Android控件之Button(按钮控件)和ImageButton(图片按钮控件)

一、Button和ImageButton特证:

  1、共同特证:

    都可以作为一个按钮产生点击事件

  2、不同特证:

    Button有text的属性,ImageButton没有

    ImageButton有src属性,Button没有

二、布局文件中设置Button和ImageButton控件

  <Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/login" /> <Button
android:id="@+id/button2"
style="?android:attr/buttonStyleSmall"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/login"
android:background="#ff00ff" /> <ImageButton
android:id="@+id/imageButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" /> <ImageButton
android:id="@+id/imageButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ic_launcher" />
上一篇:JAVA基础1(语法)


下一篇:Python-每日习题-0009-time