现在我只是创建一个简单的页面。但是除了第一个textview之外没有任何东西弹出。
我试图通过项目清理>干净。奇怪的是,这只发生在这个xml上。其他人似乎也有效。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Background Color: "/>
<Spinner
android:id="@+id/Spinner"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Size: " />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<RadioButton
android:id="@+id/small"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Small"
/>
<RadioButton
android:id="@+id/medium"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Medium"
/>
<RadioButton
android:id="@+id/large"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Large"
/>
</RadioGroup>
</LinearLayout>
<Button
android:id="@+id/Make_Changes"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Confirm"/>
</LinearLayout>
答案 0 :(得分:2)
问题是因为你到处都有“match_parent”:) 尝试layout_width =“wrap_content”和layout_height =“wrap_content”,除了父级LinearLayout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Background Color: "/>
<Spinner
android:id="@+id/Spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Size: " />
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<RadioButton
android:id="@+id/small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Small"
/>
<RadioButton
android:id="@+id/medium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Medium"
/>
<RadioButton
android:id="@+id/large"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large"
/>
</RadioGroup>
</LinearLayout>
<Button
android:id="@+id/Make_Changes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Confirm"/>
</LinearLayout>