Android: 如何在复选框中对 textview 和 imageview 进行分组

Android: How to group a textview and imageview in a checkbox

我想设计一个这样的复选框:

我可以在 html 和 table 上完成。 但我不知道如何处理 android。 请给我一些提示!

制作自定义布局。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>

<TextView
    android:id="@+id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    />

   <CheckBox android:id="@+id/checkbox"
          android:layout_alignParentRight="true"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_toRightOf="@id/title"
          />
  <ImageView android:id="+id/image"
        android:layout_alignParentRight="true"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_alignParentBottom="true"
</RelativeLayout>

或类似的东西。