如何在android中提供固定头

时间:2014-08-25 07:46:57

标签: android android-intent android-activity header

我正在使用创建帐户页面。我使用标题title.but问题是,当我通过滚动和输入输入提供输入字段时,它很好,没有隐藏标题。但是当我在kepad中单击下一步时,标题会隐藏。怎么解决这个问题?

 @Override
public void onCreate(Bundle savecInstanceState) {
    super.onCreate(savecInstanceState);
    setContentView(R.layout.account);
    setHeaderTitle(getString(R.string.create_account));
      }

1 个答案:

答案 0 :(得分:0)

您可以将标题保留在滚动视图中,如下所示:

<?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:background="#ffffff" >

    <include
        android:id="@+id/header"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        layout="@layout/header" />

    <include
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        layout="@layout/footer" />

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@id/footer"
        android:layout_below="@id/header" >

        <RelativeLayout
            android:id="@+id/container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >
        </RelativeLayout>
    </ScrollView>
</RelativeLayout>

即使在打开软键盘时滚动布局,也会导致标题保持固定。