android5.0程序开发之图片按钮ImageButton

2025-07-09 15:53:56

1、启动eclipse程序,新建一android5.0工程文件ImageButtonDemo。

android5.0程序开发之图片按钮ImageButton

3、在activity_main.xml文件中加入一个TextView文本控件和两个ImageButton图片按钮控件。<患修校楷?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" ><TextView android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content"> </TextView> <ImageButton android:id="@+id/ImageButton01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/a"> </ImageButton> <ImageButton android:id="@+id/ImageButton02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/c"> </ImageButton></LinearLayout>

android5.0程序开发之图片按钮ImageButton

5、在程序中加入文本控件和两个ImageButton控件的引用代码。 final TextView textview1=(TextView)findViewById(R.id.TextView01); final ImageButton imagebutton1=(ImageButton)findViewById(R.id.ImageButton01); final ImageButton imagebutton2=(ImageButton)findViewById(R.id.ImageButton02);

android5.0程序开发之图片按钮ImageButton

7、运行程序,分别点击ImageButton1和ImageButton2,可见如下效果:

android5.0程序开发之图片按钮ImageButton
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢