码迷,mamicode.com
首页 > 移动开发 > 详细

Android控件——Button与ImageButton

时间:2017-08-31 14:21:12      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:lfs   bdr   abap   aam   汉字   dfs   cWeb   kth   zed   

1.简单介绍

技术分享

 

2.特征

技术分享

 

3.实现Button和ImageButton

3.1使用Button

布局文件定义Button

技术分享

 

strings.xml定义常量(汉字一般定义在strings.xml中,布局文件中通过@string/name引用)

原理: res资源文件下的文件都会在gen目录下R.java中生成一个id,唯一标识一个资源。

 

技术分享

 

效果:

技术分享

 

 

3.1使用ImageButton

技术分享

 

布局文件:背景颜色设为黑色,通过src引用图片(高度为包裹图片大小),如果通过background引入图片是图片适应按钮大小

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

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

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="match_parent"
        android:background="#000000"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

</LinearLayout>

 

效果:

技术分享

 

 

总结:

button可以设置文字,不可以设置图片

ImageButton  可以设置图片,如果希望设置文字可以通过background或者src引入一个带文字的图片实现文字按钮效果。

Android控件——Button与ImageButton

标签:lfs   bdr   abap   aam   汉字   dfs   cWeb   kth   zed   

原文地址:http://www.cnblogs.com/qlqwjy/p/7457780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!