Button控件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <!-- Button控件,是TextView的子类,可以加文字,可以加图片,也可以两者都加
    -->
    <!-- 此为一个添加文字的基础按钮,
    任何控件中的文字一般都写到strings.xml中,然后通过“@strings/name”来调用
    -->
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/btnText"
        android:textSize="20sp"></Button>

    <!-- 此为一个添加图片的按钮,
-->
    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/okButton"></ImageButton>

    <!-- 此为一个添加图片和文字的按钮,
-->
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/btnText"
        android:textSize="20sp"
        android:drawableLeft="@drawable/okButton"></Button>

</LinearLayout>

在这里插入图片描述
button自定义样式进阶:
Android Studio开发之路(十三)主题影响Button颜色问题解决及button自定义样式

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐