Button与ImageButton的区别

Posted xtxt1127

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Button与ImageButton的区别相关的知识,希望对你有一定的参考价值。

转https://www.cnblogs.com/hxsyl/p/3752872.html

一、基础准备

      Imagebutton 继承 Imageview,就是用一个图标代表了一些文字,它没android:text属性。它由Android:src指定图标的位置
android:src="@drawable/back"

      Button 继承 Textview,所以TextView的一些属性也适用于Button控件。

      Button把图片当作背景与放在ImageButton/ImageView中的效果是不一样的。

二、代码

      1、  如何设置按钮的样式?

<Button android:id="@+id/myBtn1" android:text="按钮1 设置背景样式" 
     android:layout_width="fill_parent" android:layout_height="wrap_content" 
     android:background="#fff000" /> 

      2、如何设置背景图标

<Button android:id="@+id/myBtn6" android:text="按钮6 设置背景图标" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:textStyle="bold" android:background="@drawable/back_48" 
       /> 

      3.如何设置按钮的文字颜色

<Button android:id="@+id/myBtn2" android:text="按钮2 字体颜色" 
     android:layout_width="fill_parent" android:layout_height="wrap_content" 
     android:textColor="#ff0000" /> 

      4、  如何设置按钮的文字样式

<Button android:id="@+id/myBtn3" android:text="按钮3字体加粗" 
     android:layout_width="fill_parent" android:layout_height="wrap_content" 
     android:textColor="#ff0000" android:textStyle="bold" />

      5、  如何为按钮添加监听器注册事件

myBtn4.setOnClickListener(new OnClickListener() { 
 
 
                     } 
              }); 

           1、  怎么样设置ImageButton的图标位置

        Android :  src

            2、  怎么样为ImageButton添加监听器注册事件

          实现Onclick

         或者android:onClick="ImageButtonXml"

          1、  设置透明度

imgBtn01.setAlpha(50);//设置透明度

以上是关于Button与ImageButton的区别的主要内容,如果未能解决你的问题,请参考以下文章

Button(按钮)与ImageButton(图像按钮)

2.3.3 Button(按钮)与ImageButton(图像按钮)

Button和ImageButton

停止 ImageButton 工具提示出现在通过片段悬停时

Android 在listview里itme中有imagebutton 怎么监听这个button?

处理Fragment类ListView的按钮事件?