我想在ScrollView上面粘贴TextView:
文本视图应覆盖屏幕的50%,因此我将textview&s和内部线性布局的权重设置为" 1"。
但TextView根本没有显示,ScrollView也没有滚动!
任何帮助将不胜感激!
<RelativeLayout 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:background="#000000"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/wallbg"
android:gravity="bottom"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:height="0dp"
android:text="Some Text!"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@android:color/white"
android:textSize="50sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@drawable/wallbg"
android:gravity="bottom"
android:orientation="vertical" >
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/btn1"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="10dp"
android:background="@drawable/btnbg"
android:text="Some Text!"
android:textColor="@android:color/white"
android:textSize="@dimen/font_size" />
<Button
android:id="@+id/btn4"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="10dp"
android:background="@drawable/btnbg"
android:text="Some Text!"
android:textColor="@android:color/white"
android:textSize="@dimen/font_size" />
<Button
android:id="@+id/btn2"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="10dp"
android:background="@drawable/btnbg"
android:text="Some Text!"
android:textColor="@android:color/white"
android:textSize="@dimen/font_size" />
<Button
android:id="@+id/btn3"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="10dp"
android:background="@drawable/btnbg"
android:text="Some Text!"
android:textColor="@android:color/white"
android:textSize="@dimen/font_size" />
</LinearLayout>
</ScrollView>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:2)
看起来你根本不需要RelativeLayout
。只需将您的外部LinearLayout
设置为根视图,并将其layout_height
属性设置为match_parent
(这是主要问题)。此外,LinearLayout
内的ScrollView
wrap_content
应该layout_height
。