Android学习-常见的UI控件 Button和ImageButton

来源:互联网 发布:杀师案 知乎 编辑:程序博客网 时间:2024/05/21 09:03

Button—按钮

<Button        android:id="@+id/button"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="Button" />

ImageButton–图片按钮

<ImageButton        android:id="@+id/imageButton"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:src="@mipmap/ic_launcher" />

Button和ImageButton特征
1.共有的特性
都可以作为一个按钮产生点击事件
2.不同点
1>Button有text属性,但是ImageButton没有此属性
2>ImageButton有src属性,Button没有该属性
3.产生明显的点击效果

   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical">    <Button        android:id="@+id/button"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="@string/button_name" />    <ImageButton        android:id="@+id/imageButton"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:src="@mipmap/ic_launcher" />    <ImageButton        android:id="@+id/imageButton2"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:src="@mipmap/ic_launcher"        android:background="#ff2222"/></LinearLayout>

注意:
一般text内容不是直接写在Button上,而是引入string内的name进行显示

虚拟机运行结果
这里写图片描述

原创粉丝点击