gpt4 book ai didi

android - 无法让 TextView 在对话框中填充 ListView 中的父级高度

转载 作者:行者123 更新时间:2023-11-30 03:29:47 25 4
gpt4 key购买 nike

在我的 Android 应用程序中,我弹出了一个显示 ListView 的对话框。我遇到的问题是让 textview 高度填充父级。我希望它填充父级,然后将文本垂直居中。相反,它似乎包裹了高度。这是对话框的 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>

这是 ListView 中一行的 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>

最佳答案

为了让 TextView 填充其父 View ,我发现将它放在 LinearLayout 中并将 layout_centerVertical 设置为 true 即可。 RelativeLayouts 与 fill_parent 有问题。最初我认为这个问题只针对对话框,但实际上它也发生在 Activity 中。

<?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>

关于android - 无法让 TextView 在对话框中填充 ListView 中的父级高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17649378/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com