2015-05-20 55 views
0

一個TextView和ImageView的如何組我想設計一個複選框這個樣子的:Android的:在一個複選框

Example

我可以表做它的HTML。 但我不知道如何在android上工作。 請給我一些提示!

+0

也許你可以嘗試一個RealtiveLayout。這是將其定製爲表格的方式 –

回答

0

進行自定義佈局。

<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> 

或類似的東西。

+0

謝謝您的提示!我做的! – LittleTin

相關問題