Android游戲開發系統控件-Button
Button(按鈕)是一個常用的系統小組件,很小但是在開發中最常用到。一般通過與監聽器使用,從而觸發一些特定事件。
下面為一個Andriod項目“ButtonProject”,對應的代碼如下
項目功能:點擊按鈕觸發事件
代碼分別為:
main.xml
string.xml
ButtonProject.java
項目運行效果圖:
代碼清單:
=》》main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <TextView
- android:id="@+id/tv"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello" />
- <Button
- android:id="@+id/btn_ok"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/btn_ok"
- />
- <Button
- android:id="@+id/btn_cancel"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/btn_cancel"
- />
-
- </LinearLayout>