Android的常用控件

Android的常用控件

控件用途
TextView显示文字
ImageView显示图片
EditText输入框,可编辑
Button按钮,可附带图片
CheckBox复选框
RadioButton单选按钮(和 RadioGroup 配合使用)

用法:在xml布局文件中

1. TextView

 //设置文字:

<TextView android:id="@+id/textView0" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="我是文字"
android:textColor="#FF0000"
android:textSize="18dip" 
android:background="#FFFFFF"  />

2. ImageView

ImageView android:background="@android:color/white" android:src="@drawable/btn_mode_switch_bg"  
        android:layout_width="wrap_content" android:layout_height="wrap_content"></ImageView>  

3. EditText

<EditText android:id="@+id/editText1" android:inputType="date"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:maxLength="40" 
android:hint="输入电话号码" android:textColorHint="#FF000000"
android:phoneNumber="true"></EditText>

4. Button

<Button android:orientation="vertical" 

       android:layout_height="wrap_content"  android:id="@+id/button1"

       android:layout_width="wrap_content"

       android:textColor="#0000FF"

       android:text="这是button1,可以点击" />

5. CheckBox

<CheckBox

  android:id="@+id/CheckBox1"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

  android:text="我是文字"

> 

6.RadioButton

  <RadioGroup

    android:id="@+id/RadioGroup01"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:orientation="vertical"

    android:layout_x="3px"

    android:layout_y="54px"

> 

<!--      选项要在rec/values/string.xml中定义 -->

    <RadioButton

      android:id="@+id/RadioButton1"

      android:layout_width="wrap_content"

      android:layout_height="wrap_content"

      android:text="@string/RadioButton1"

    />

    <RadioButton

      android:id="@+id/RadioButton2"

      android:layout_width="wrap_content"

      android:layout_height="wrap_content"

      android:text="@string/RadioButton2"

    />

    <RadioButton

      android:id="@+id/RadioButton3"

      android:layout_width="wrap_content"

      android:layout_height="wrap_content"

      android:text="@string/RadioButton3"

    />

    <RadioButton

      android:id="@+id/RadioButton4"

      android:layout_width="wrap_content"

      android:layout_height="wrap_content"

      android:text="@string/RadioButton4"

    />

</RadioGroup>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值