この質問が何度も聞かれたことは知っていますが、私が見ることができるすべての解決策を見てきましたが、どれもうまくいきませんでした. 相対レイアウト内にテキストビューがあります。textview には、機能しない height : fill_parent 属性があります。駄洒落は、この相対レイアウトの他のいくつかのテキストビューであり、これを除いてすべて親を埋めることができます。XML は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/customshape"
android:orientation="horizontal" >
<TextView
android:id="@+id/mainlistdescription"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:scrollHorizontally="true"
android:maxLines="4"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/mainlistquantite"
android:layout_gravity="center_vertical"
android:textSize="12sp"
android:padding="10dp"
/>
<TextView
android:id="@+id/mainlistquantite"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:maxLines="4"
android:layout_toLeftOf="@+id/consultaffichelayoutdroit"
android:textSize="12sp"
android:padding="10dp"
/>
<TextView
android:id="@+id/consultafficheseparator" <!-- the one not working-->
android:layout_width="2dp"
android:layout_height="fill_parent"
android:layout_toLeftOf="@+id/imageView1"
android:background="#777777"
android:maxWidth="2dp" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="15dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:gravity="center_vertical|right"
android:src="@drawable/fleche" />
<LinearLayout
android:id="@+id/consultaffichelayoutdroit"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_toLeftOf="@+id/consultafficheseparator"
android:orientation="vertical"
android:paddingLeft="5dp"
>
<TextView
android:id="@+id/mainlistnumero"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
android:layout_marginRight="10dp"
android:layout_weight="1"
android:textSize="12sp"
android:textStyle="bold" />
<TextView
android:id="@+id/mainlistprix"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
android:layout_marginRight="10dp"
android:layout_weight="1" />
</LinearLayout>
</RelativeLayout>
ここに私が得るものがあります:
灰色のバーは最後まで表示されるはずですが、実際にエミュレーターで実行している場合は表示されません (Eclipse ツールでは表示されます)。
この xml は実際にはリスト ビューで呼び出されるため、JAVA コードを使用して問題を解決することはできないようです。そのため、解決策は理想的には XML ファイルにあります。私はこれまでに android:clipChildren="false" を試してみましたが、成功せず、XML 内の要素の順序を変更しただけで、さらに悪化しました。
実験の後、私は何も場所を取らないと言うことができるので、そこにはすでにビューがあるので行けないわけではなく、そこまで拡大しないだけです
それについて助けてくれてありがとう