1

私の Android アプリでは、ListView を表示するダイアログをポップアップ表示します。私が抱えている問題は、親を埋めるためにテキストビューの高さを取得することです。親を埋めてから、テキストを垂直方向に中央揃えにしたい。代わりに、高さをラップするように見えます。ダイアログの xml は次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<ViewSwitcher xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/loadSwitcher"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#ff484a4a"
        android:gravity="center"
        android:orientation="vertical"
        android:tag="LoadingView" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="50dp"
            android:gravity="center" >

            <ProgressBar
                android:id="@+id/marker_progress"
                style="?android:attr/progressBarStyle"
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:layout_marginBottom="10dp"
                android:layout_marginTop="10dp"
                android:indeterminate="true" />
        </LinearLayout>

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@string/msg_PleaseWait"
            android:textSize="18sp" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/llContent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:tag="ContentView" >

        <TextView
            android:id="@+id/tvHeader"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="2dp"
            android:background="#7395bf"
            android:padding="3dp"
            android:text="@string/lbl_SelectLocationSet"
            android:textColor="#ffffff"
            android:textSize="18sp" />

        <ListView
            android:id="@+id/lvData"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:minHeight="50dp"
            android:background="#ff626262"
            android:cacheColorHint="#00000000"
            android:divider="#ff7f7f7f"
            android:dividerHeight="1dp"
            android:scrollingCache="true" />

        <LinearLayout
            android:id="@+id/llToolbar"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="#cacaca"
            android:orientation="horizontal"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"
            android:paddingTop="5dp" >

            <Button
                android:id="@+id/btnOK"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="@string/lbl_ButtonOK"
                android:textSize="16sp" />

            <Button
                android:id="@+id/btnCancel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="@string/lbl_ButtonCancel"
                android:textSize="16sp" />
        </LinearLayout>
    </LinearLayout>

</ViewSwitcher>

リストビューの行の 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="fill_parent" >

    <RadioButton
        android:id="@+id/rbSelected"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:checked="false"
        android:clickable="false"
        android:paddingLeft="5dp" >
    </RadioButton>

    <ImageView
        android:id="@+id/ivEncrypted"
        android:layout_width="16dp"
        android:layout_height="16dp"
        android:layout_marginRight="6dp"
        android:layout_toLeftOf="@id/rbSelected"
        android:scaleType="fitXY"
        android:src="@drawable/icon_lock_16x16" />

    <TextView
        android:id="@+id/tvDate"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center_vertical"
        android:background="#baf5c7"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="10dp"
        android:layout_toLeftOf="@id/ivEncrypted"
        android:textColor="#ffffff"
        android:textSize="18sp" />

</RelativeLayout>
4

1 に答える 1

1

TextView を取得してその親を埋めるには、それを LinearLayout に配置し、layout_centerVertical を true に設定するとうまくいくことがわかりました。RelativeLayouts には、fill_parent に関する問題があります。当初、この問題はダイアログだけの問題だと思っていましたが、実際にはアクティビティでも発生します。

<?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="fill_parent" >

    <RadioButton
        android:id="@+id/rbSelected"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:checked="false"
        android:clickable="false"
        android:focusable="false"        
        android:paddingLeft="5dp" >
    </RadioButton>

    <ImageView
        android:id="@+id/ivEncrypted"
        android:layout_width="16dp"
        android:layout_height="16dp"
        android:layout_marginRight="6dp"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@id/rbSelected"
        android:scaleType="fitXY"
        android:src="@drawable/icon_lock_16x16" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@id/ivEncrypted" >

        <TextView
            android:id="@+id/tvDate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginRight="10dp"
            android:layout_marginLeft="5dp"
            android:gravity="center_vertical"
            android:textColor="#000000"
            android:textSize="18sp" />
    </LinearLayout>

</RelativeLayout>
于 2013-07-15T11:17:02.133 に答える