按钮的困难设计 - Android Studio

difficult design for buttons - Android Studio

按钮比较难设计怎么办?

我正在为智能灯和板做应用程序,我需要像模板中那样做设备选择按钮。如何用 1 个 ImageView 和 2 个 TextView 做按钮?

模板:

合并视图并为此视图执行 OnClickListener

仅供参考,一种方法是这样的...

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white">

<com.google.android.material.card.MaterialCardView
    android:layout_width="match_parent"
    android:layout_margin="16dp"
    android:padding="8dp"
    app:strokeColor="@color/black"
    app:strokeWidth="2dp"
    app:cardCornerRadius="8dp"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:padding="8dp"
        android:weightSum="10">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="7"
            android:layout_gravity="center"
            android:orientation="vertical"
            android:layout_height="wrap_content">

            <TextView
                android:layout_width="match_parent"
                android:text="Big Title"
                android:textSize="25sp"
                android:paddingTop="8dp"
                android:paddingLeft="8dp"
                android:textStyle="bold"
                android:layout_height="wrap_content"/>


            <TextView
                android:layout_width="match_parent"
                android:text="small Title"
                android:textSize="16sp"
                android:paddingLeft="8dp"
                android:layout_height="wrap_content"/>

        </LinearLayout>

        <ImageView
            android:layout_width="0dp"
            android:layout_weight="3"
            android:src="@drawable/apple"
            android:layout_height="100dp"/>


    </LinearLayout>

</com.google.android.material.card.MaterialCardView>


</LinearLayout>

输出会是这样的……