初學者實現android第一個應用(intent)

1、創建一個新的android 應用

2、新建一個activity類(Other)要注意名字,不然後面會忘記  

3、設置應用的界面(需要兩個xml文件,兩個界面,裏面定義要顯示的文字和需要的按鈕)

4、編寫代碼,添加按鈕的點擊處理事件,編寫過程中能copy的儘量copy,不然對新手是很容易出錯的。另外,看別人的代碼例子編寫的時候不要忘記引入實現要用的到的方法的包(import................),別的也就是要心細了

5、配置功能清單文件(很慚愧,自己配的時候總是出錯,部署到模擬器很多次纔算是通過,汗)

6、再次特別先感謝可能會將要多少指點點兒實用知識的的朋友,謝謝

我的代碼

 

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    />
  <Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="打開新activity"
     android:id="@+id/button "
    />
</LinearLayout>

 

 

 

qother.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">
  <TextView
   android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="新activty"
   />
</LinearLayout>

 

 

 


 

 

 

main activity

package com.qiao.activity;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        Button button=(Button)this.findViewById(R.id.button);
        button.setOnClickListener(new View.OnClickListener() {
   
   @Override
   public void onClick(View v) {
    // TODO Auto-generated method stub
    Intent intent =new Intent("com.qiao.activity.other");
    intent.addCategory("com.qiao.catagoty.xxx");
    startActivity(intent);
   }
  });
    }
}

 

 

 

 

 

other activity

package com.qiao.activity;

import android.app.Activity;
import android.os.Bundle;

public class OtherActivity extends Activity {

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  // TODO Auto-generated method stub
  super.onCreate(savedInstanceState);
  setContentView(R.layout.qother);
  
 }

}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章