開始讀《Android移動開發入門進階》書的學習小結。
1 <Button android:text="@+id/Button01">
當新的一個button時,必須要@告訴XML解析器,解析ID字元後的部分,
當引用一個android id時,就不需要+號了,直接這樣:
android:id="@android:id/Button01
代碼中去獲得一個button:
Button mybutton=(Button)findViewById(R.id.my_button);
2 TABLELAYOUT的例子:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:stretchColumns="1">
<TableRow>
<TextView android:text="使用者名稱:" android:textStyle="bold"
android:gravity="right" android:padding="3dip" />
<EditText android:id="@+id/username" android:padding="3dip"
android:scrollHorizontally="true" />
</TableRow>
<TableRow>
<TextView android:text="登入密碼:" android:textStyle="bold"
android:gravity="right" android:padding="3dip" />
<EditText android:id="@+id/password" android:password="true"
android:padding="3dip" android:scrollHorizontally="true" />
</TableRow>
<TableRow android:gravity="right">
<Button android:id="@+id/cancel"
android:text="取消" />
<Button android:id="@+id/login"
android:text="登入" />
</TableRow>
</TableLayout>
3 relative_layout的例子
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:background="@drawable/blue" android:padding="10dip">
<TextView android:id="@+id/label" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="請輸入使用者名稱:" />
<!--
這個EditText放置在上邊id為label的TextView的下邊
-->
<EditText android:id="@+id/entry" android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
android:layout_below="@id/label" />
<!--
取消按鈕和容器的右邊齊平,並且設定左邊的邊距為10dip
-->
<Button android:id="@+id/cancel" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_below="@id/entry"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dip" android:text="取消" />
<!--
確定按鈕在取消按鈕的左側,並且和取消按鈕的高度齊平
-->
<Button android:id="@+id/ok" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/cancel"
android:layout_alignTop="@id/cancel" android:text="確定" />
</RelativeLayout>
4 處理使用者的點擊事件,這個簡單
button0 = (Button) findViewById(R.id.button0);
button0.setOnClickListener(listener0);
listener0 = new OnClickListener() {
public void onClick(View v) {
Intent intent0 = new Intent(ActivityMain.this, ActivityFrameLayout.class);
setTitle("FrameLayout");
startActivity(intent0);
}
};
5 訪問res/drawable目錄下名叫a1的圖片資源
Drawable d=this.getResources().getDrawable(R.drawable.a1);
6 MENU的操作
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
menu.add(0, ITEM0, 0, "顯示button1");
menu.add(0, ITEM1, 0, "顯示button2");
menu.findItem(ITEM1);
return true;
}
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case ITEM0:
actionClickMenuItem1();
break;
case ITEM1:
actionClickMenuItem2(); break;
}
return super.onOptionsItemSelected(item);}
7 取得前一個ACTIVETY傳過來的值的方法:
Intent intent = getIntent();
String name = (String) intent.getExtras().get("name");
比如在一個文字框中輸入了值NAME,點BUTTON1彈出一個對話方塊,把NAME值傳過去,這時可以這樣:
btn_dialog.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
//通過Intent傳遞參數
Intent intent = new Intent();
intent.putExtra("name", editText.getText().toString());
//啟動另一個Activity
intent.setClass(MultiActivity.this, AlertDialog.class);
startActivity(intent);
}
});
用putExtra放參數的值,用startActivety啟動一個新的activety