博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ImageButton和Button区别
阅读量:5828 次
发布时间:2019-06-18

本文共 1054 字,大约阅读时间需要 3 分钟。

一、基础准备

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

android:src="@drawable/back"
      Button 继承 Textview,所以TextView的一些属性也适用于Button控件。

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

二、代码

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

 
 
 
android:layout_width="fill_parent" android:layout_height="wrap_content"
 
android:background="#fff000" />

      2、如何设置背景图标

 
 
 
android:layout_width="wrap_content" android:layout_height="wrap_content"
 
android:textStyle="bold" android:background="@drawable/back_48"
 
/>

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

 
 
 
android:layout_width="fill_parent" android:layout_height="wrap_content"
 
android:textColor="#ff0000" />

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

 
 
 
android:layout_width="fill_parent" android:layout_height="wrap_content"
 
android:textColor="#ff0000" android:textStyle="bold" />

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

 
myBtn4.setOnClickListener(new OnClickListener() {
@Override
 
public void onClick(View v) {
 
myBtn4.setText("setOnclickListener事件监听注册成功");
}
});

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

        Android :  src

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

          实现Onclick

         或者android:onClick="ImageButtonXml"

          1、  设置透明度

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

转载地址:http://qiadx.baihongyu.com/

你可能感兴趣的文章
802.11 学习笔记
查看>>
Leetcode-Database-176-Second Highest Salary-Easy(转)
查看>>
构建Docker Compose服务堆栈
查看>>
最小角回归 LARS算法包的用法以及模型参数的选择(R语言 )
查看>>
Hadoop生态圈-Kafka常用命令总结
查看>>
如何基于Redis Replication设计并实现Redis-replicator?
查看>>
浮点数内存如何存储的
查看>>
贪吃蛇
查看>>
EventSystem
查看>>
用WINSOCK API实现同步非阻塞方式的网络通讯
查看>>
玩一玩博客,嘿嘿
查看>>
P1352 没有上司的舞会
查看>>
ios11文件夹
查看>>
【HLOJ 559】好朋友的题
查看>>
Electric Fence(皮克定理)
查看>>
nvl 在mysql中如何处理
查看>>
MyEclipse 快捷键
查看>>
快速傅里叶变换FFT
查看>>
大数据常用基本算法
查看>>
JavaScript学习笔记(十三)——生成器(generator)
查看>>