Android——Button的颜色

Posted Chen_s

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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"
    android:orientation="vertical">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="拨打电话"
        android:id="@+id/phone"
        android:background="@drawable/anniu1"
       />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="不拨打电话"
        android:background="@drawable/anniu2"
        />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="拨打电话"
        android:drawableLeft="@drawable/anniu5"
        />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="不拨打电话"
            android:drawableRight="@drawable/anniu6"
            />


        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/anniu3"
            />



</LinearLayout>

技术分享

以上是关于Android——Button的颜色的主要内容,如果未能解决你的问题,请参考以下文章

安卓界面布局如何改变所有button的背景颜色?

片段中的 button.setOnClickListener 不起作用

如何更改 Android 中各个片段的 ActionBar 颜色?

Android——Button的颜色

状态栏在全屏对话框片段android中将其颜色更改为黑色

Android动态修改选中和不选中的Button图片颜色