gpt4 book ai didi

android - ListView layout_weight 不工作,高度设置为 0dp

转载 作者:太空宇宙 更新时间:2023-11-03 11:13:17 26 4
gpt4 key购买 nike

我正在尝试使用 layout_weight 属性进行测试。除了 ListView,它工作正常。我已将高度设置为 0dp,将权重设置为 0dp。我尝试将 ListView 放入相对布局中,但我得到了相同的结果。

这是我的代码:

<?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="match_parent"
android:orientation="vertical"
android:weightSum="1" >

<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.25"
android:text="TextView" />

<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.25" >
</ListView>

<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.25"
android:text="TextView" />

<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.25"
android:text="Button" />

</LinearLayout>

这是它的样子:

pic

它似乎与我使用的主题有关。我正在使用 Theme.Black.NoTitleBar 主题。奇怪的是,我可以在模拟器中看到它正常,但在 IDE 中却看不到,但我需要在 IDE 中看到东西,因为我经常使用 GUI,而且我很少用 XML 编码。有解决办法吗?这是已知错误吗?

最佳答案

您可以在右上边框更改 IDE 的主题。可能是当前选择的主题缺少一些属性。

关于android - ListView layout_weight 不工作,高度设置为 0dp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21313240/

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