次のように配置したい: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>