我试图通过屏幕底部的按钮获得线性布局。我有一个主要的父线性布局,包含滚动视图和线性布局。滚动视图似乎将线性布局推离屏幕。
我尝试使用所有布局宽度/高度属性。但是一切看起来都很好,我甚至用像素完美的方式检查了它,但它没有显示任何有用的东西。
<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"
android:padding="5dp"
>
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/layout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/main_title"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/image_title"
android:textAppearance="?android:attr/textAppearanceMedium" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/pia04980"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/descp"
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:gravity="center"
android:padding="5dp"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Refresh" />
</LinearLayout>
</LinearLayout>
string descp很长,这就是滚动视图填满整个屏幕并为其他线性布局留下空间的原因。
答案 0 :(得分:1)
目前,ScrollView的高度由其内容决定。您可能希望它消耗其父级的所有额外垂直空间,并滚动其内容。为此,请将其设置为:
<ScrollView
android:id="@+id/scrollView1"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp" >
答案 1 :(得分:0)
尽量不要将TextView限制为单行
<TextView
android:id="@+id/textView3"
android:singleLine="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/descp"
android:textAppearance="?android:attr/textAppearanceSmall" />