Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android開發入門(十)基本控件 10.2

Android開發入門(十)基本控件 10.2

編輯:Android開發教程

Button,ImageButton,EditText,ChcekBox,ToggleButton

除了最常用的TextView,Android還提供了一些其他的基本控件。

Button

ImageButton

EditText

CheckBox

RadioGroup和RadioButton

ToggleButton

下面的例子,展示如何使用這些基本控件。

1. 創建一個工程:BasicViews。

2. 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" >     
             
<Button android:id="@+id/btnSave" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/save"  
    android:onClick="btnSaved_clicked"/>     
         
<Button android:id="@+id/btnOpen" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Open" />     
         
<ImageButton android:id="@+id/btnImg1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:src="@drawable/ic_launcher" />     
         
<EditText android:id="@+id/txtName" 
    android:layout_width="fill_parent"  
    android:layout_height="wrap_content" />     
         
<CheckBox android:id="@+id/chkAutosave" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Autosave" />     
         
<CheckBox android:id="@+id/star" 
    style="?android:attr/starStyle" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" />     
         
         
<RadioGroup android:id="@+id/rdbGp1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical" >     
             
    <RadioButton android:id="@+id/rdb1" 
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content" 
        android:text="Option 1" />     
             
    <RadioButton android:id="@+id/rdb2" 
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content" 
        android:text="Option 2" />     
         
</RadioGroup>     
         
                 
<ToggleButton android:id="@+id/toggle1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" />     
         
</LinearLayout>

3. F11調試。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved