android Button

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TableRow>
<!-- 普通文字按钮 -->
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/red"
    android:text="普通按钮"
    android:textSize="10pt"
/>
<!-- 普通图片按钮 -->
<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/blue"
    android:background="#000000"
/>
</TableRow>
<TableRow>
<!-- 按下时显示不同图片的按钮 -->
<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/button_selector"
    android:background="#000000"
/>
<!-- 带文字的图片按钮-->
<Button
    android:id="@+id/test"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/button_selector"
    android:text="带文字的图片按钮"
/>
</TableRow>
</TableLayout>

android Button,布布扣,bubuko.com

时间: 2024-10-20 04:08:29

android Button的相关文章

我的Android进阶之旅------&gt;android Button上面的英文字符串自动大写的问题解决

今天碰到一个关于Button的问题:android Button上面的英文字符串会自动变成大写,运行的Android 5.1版本,如下图所示: 图1:Button 图2:TextView 这个Button的定义代码如下 <Button android:id="@+id/addContacts" android:layout_width="match_parent" android:layout_height="wrap_content" a

我的Android进阶之旅------&amp;gt;android Button上面的英文字符串自己主动大写的问题解决

今天碰到一个关于Button的问题:android Button上面的英文字符串会自己主动变成大写,执行的Android 5.1版本号,例如以下图所看到的: 图1:Button 图2:TextView 这个Button的定义代码例如以下 <Button android:id="@+id/addContacts" android:layout_width="match_parent" android:layout_height="wrap_conten

android Button点击事件总结

直接上代码: public class MainActivity extends AppCompatActivity implements View.OnClickListener{ Button button1,button2,button3,button4,button5,button6; TextView text1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedIns

Android Button监听的方式

Android Button的几种监听方式 1.一个Button对应一个监听 1)xml文件中绑定监听 <Button android:id="@+id/btn_test" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="test listener" android:onClick="t

Android Button Maker(在线生成android shape xml文件的工具),真方便!

直接上地址:http://angrytools.com/android/button/ 使用起来超简单,如图: Android Button Maker is online tool to generate buttons code for Android Apps. Android API provide Drawable Resources where XML file defines geometric shape, including colors, border and gradien

Android Button 注册点击事件

Android Button控件处理点击事件 总共有四种方式 第一种,个人认为最方便的一种,像HTML和JS那样直接注册 <Button android:id="@+id/btn" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="BUTTON" <!-- 在这里注册了onClick的回调函数

【转】Android - Button(按钮)的响应点击事件的4种写法

原文网址:http://www.yrom.net/blog/2011/12/12/android-4-onclicklistener-of-button/ Button控件setOnclickListener(View.OnClickListener listener)来接收一个点击事件的监听器 自定义一个点击事件监听器类让其实现View.OnClickListener的onClick(View v)方法 1 2 3 4 5 class MyOnClickListener implements

Android button 性能探讨

button是Android 中经常使用的控件. 父类是 Textview, 在之前的文章中对 Textview的一些 基本信息都介绍过, 还包含Textview的 之 setText方法 带来的一些 性能问题.   这篇文章就讲到了 button的一些使用要注意的地方. 这些须要注意的  还包含了 Textview 已经一些 Textview的 子类 如 CheckBox,EditText 等等 一些控件. 问题的产生 button  我们一般都会给它 设置一个background, 很多人会

Android——Button的颜色

.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" androi