1

内部に 3 つの RelativeLayout を持つ LinearLayout があります。最初の 2 つの子レイアウトが表示されます。3番目のものは表示されません。子を RelativeLayout から LinearLayouts に変更しても、3 番目の子はまだ表示されません。これを修正する方法についてのアイデアはありますか? 表示されていないものには ImageView が含まれています。

コードは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:clickable="true"
    android:orientation="horizontal" >

    <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="@drawable/back1" >

            <View
                android:id="@+id/fract"
                android:layout_width="60dp"
                android:layout_height="1dp"
                android:layout_centerInParent="true"
                android:background="#00a5e5"
                android:paddingLeft="5dp"
                android:paddingRight="5dp" />

            <TextView
                android:id="@+id/nume"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_above="@id/fract"
                android:layout_centerHorizontal="true"
                android:ellipsize="end"
                android:singleLine="true"
                android:text="58 apple"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textSize="14sp" />

            <TextView
                android:id="@+id/denom"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/fract"
                android:layout_centerHorizontal="true"
                android:ellipsize="end"
                android:singleLine="true"
                android:text="46 orange"
                android:textSize="12sp"
                android:textStyle="bold" />
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="@drawable/back2" >

            <TextView
                android:id="@+id/red_1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:ellipsize="end"
                android:singleLine="true"
                android:text="11 apple "
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textSize="14sp" />

            <TextView
                android:id="@+id/red_2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/red_1"
                android:layout_centerHorizontal="true"
                android:layout_marginRight="5dp"
                android:ellipsize="end"
                android:singleLine="true"
                android:text="13 oranges "
                android:textSize="12sp"
                android:textStyle="bold" />
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="#ffffff" >

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_alignParentRight="true"
                android:src="@drawable/guess" />
        </RelativeLayout>
</LinearLayout>
4

3 に答える 3

1

android:layout_centerInParent="true"これをビューから削除します。ビューを追加したい場合は、これを使用して RelativeLayout から個別に追加できます。レイアウトは既に親の中央にあります。デバッグ目的で、各ビューの幅を特定のレベルに設定して、次のことができるようにします。見る。2 つの RelativeLayout は既に Linear Layout の幅を占めているため、3 番目のレイアウト用のスペースはありません。

于 2013-06-30T06:20:44.263 に答える
1

2 番目の相対レイアウトの高さは

android:layout_height="match_parent"

入れてみてください:

android:layout_height="wrap_content"

--edit - 重み属性を追加してみてください。

</RelativeLayout>

<RelativeLayout
android:weight=1
>

</RelativeLayout>

<RelativeLayout
android:weight=1>

</RelativeLayout>
于 2013-06-30T01:41:06.640 に答える
1

私はプログラムでそれを行うことにしました。を使用してデバイスの幅を取得しcontext.getResources().getDisplayMetrics().widthPixelsます。そこから、いわばピクセルごとにピースをレイアウトします。

于 2013-06-30T06:53:43.480 に答える