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.setOnClickListener 不起作用