我正在尝试使用layout_weight属性进行测试。它对ListView起到了很好的作用。我将高度设置为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>
这就是它的样子:
它似乎与我正在使用的主题相关联。我正在使用Theme.Black.NoTitleBar
主题。奇怪的是,我可以在模拟器中看到它是正常的,但在IDE中却看不到,但是我需要在IDE中看到一些东西,因为我在GUI上工作很多,而且我用XML编写了大量的代码。有没有解决这个问题?这是一个已知的错误吗?
答案 0 :(得分:0)
您可以在右上边框中更改IDE的主题。可能是当前选择的主题错过了一些人。