我有一个LinearLayout
,应该垂直显示一个图像和3 Buttons
。
然而,一旦我放了图像,我就看不到按钮了。这种行为有合理的原因吗?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:scaleType="fitStart"
android:maxHeight="40dp"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/logooutlast" />
<Button
android:layout_marginTop="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/buttonWalktrough" />
<Button
android:layout_marginTop="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/buttonFullCompletion" />
<Button
android:layout_marginTop="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/buttonInsaneMode" />
</LinearLayout>
答案 0 :(得分:1)
将ScrollView
作为父视图放在xml:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<!-- Other views here -->
</LinearLayout>
</ScrollView>