ScrollView夹在顶部底部控件之间

来源:互联网 发布:c语言new的用法 编辑:程序博客网 时间:2024/04/28 10:32
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical" ><RelativeLayout    android:id="@+id/relativelayout1"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:background="#80BBDEFB" >    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:padding="20dp"        android:text="这是顶部标题" /></RelativeLayout><RelativeLayout    android:id="@+id/relativelayout2"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:layout_below="@id/relativelayout1" >    <ScrollView        android:id="@+id/scrollview"        android:layout_width="match_parent"        android:layout_height="wrap_content"        <TextView            android:layout_width="match_parent"            android:layout_height="wrap_content"            android:paddingLeft="10dp"            android:paddingRight="10dp"            android:paddingTop="10dp"            android:text="@string/www" />    </ScrollView></RelativeLayout><RelativeLayout    android:id="@+id/relativelayout3"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:layout_alignParentBottom="true"    android:background="#80CCFF90" >    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:padding="20dp"        android:text="这是底部标题" /></RelativeLayout>
0 0