0

次のように配置したい:image-text-checkbox

しかし、私はそれを達成することができませんでした。android:layout_toRightOf、android:layout_alignParentRight = "true" .etcが機能しませんでした!多分それは膨張のせいです、私は知りません!

![ここに画像の説明を入力してください] [1]

コード:

RelativeLayout v = (RelativeLayout) mInflater.inflate(R.layout.result_checkbox, null);
           final TextView titleui = (TextView) v.findViewById(R.id.titleui);
               titleui.setText(mytext);
....

          tableView.addViewItem(v2);
         ViewItem v2 = new ViewItem(v);     
        tableView.addViewItem(v2);

xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:duplicateParentState="true" 
    android:paddingLeft="10dip"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:minHeight="40dip">

      <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView android:text="Versão" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:id="@+id/titleui"
        android:gravity="center_vertical"
        android:layout_centerVertical="true" />

    <CheckBox
 android:id="@+id/cbox"
 android:layout_width="match_parent"
 android:layout_height="wrap_content" />

</RelativeLayout>
4

1 に答える 1

0

相対レイアウトの使用

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
android:duplicateParentState="true" 
android:paddingLeft="10dip"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minHeight="40dip">

  <ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/ic_launcher" />

<TextView android:text="Versão....." 
    android:paddingLeft="20dp"
    android:layout_toRightOf="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:id="@+id/titleui" />

<CheckBox
 android:id="@+id/cbox"
 android:paddingLeft="20dp"
 android:layout_toRightOf="@+id/titleui"
 android:layout_width="match_parent"
 android:layout_height="wrap_content" />
</RelativeLayout>

LinearLayoutの使用

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
android:duplicateParentState="true" 
android:paddingLeft="10dip"
android:orientation="horizontal"//set orientation hoorizontal as child views appear next to each other
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minHeight="40dip">

  <ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/ic_launcher" />

<TextView android:text="Versão....." 
    android:paddingLeft="20dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:id="@+id/titleui" />

<CheckBox
  android:id="@+id/cbox"
  android:paddingLeft="20dp"
  android:layout_width="match_parent"
  android:layout_height="wrap_content" />
 </LinearLayout>

ImageVIew ----TextView-----チェックボックス

ここに画像の説明を入力してください

于 2013-03-24T16:15:30.667 に答える