我想在键盘启动时将布局滚动到底部。我编写的代码如下,但我无法理解为什么它不起作用。任何人都可以告诉我该代码中的错误。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#FFFCE8"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/top"
android:layout_height="50dp"
android:background="#82552e"
android:layout_width="fill_parent"
android:layout_alignParentTop="true"
>
<TextView
android:text="Add Text"
android:textColor="#ffffff"
android:textSize="20dp"
android:typeface="serif"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
/>
</RelativeLayout>
<ScrollView
android:layout_below="@+id/top"
android:layout_above="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
>
<EditText
android:id="@+id/edit"
android:gravity="top"
android:layout_width="fill_parent"
android:layout_height="150dp"
/>
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
>
<Button
android:id="@+id/add"
android:text="Add"
android:textSize="18dp"
android:typeface="serif"
android:textColor="#ffffff"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:background="@drawable/item_back"
/>
</RelativeLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>
提前致谢。
答案 0 :(得分:0)
使用此....
android:scrollbars="vertical"
ScrollView中的