悬浮顶层控件不受ScrollView影响
<?xml version="1.0" encoding="utf-8"?>?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"?
? ? android:orientation="vertical" android:layout_width="fill_parent"?
? ? android:layout_height="fill_parent">?
? ? <!-- Header -->?
? ? <TextView?
? ? ? ? android:layout_width="fill_parent"?
? ? ? ? android:layout_height="wrap_content"?
? ? ? ? android:text="Your header"/>?
?
? ? <!-- rest of your layout -->?
? ? <ScrollView?
? ? ? ? android:layout_width="fill_parent"?
? ? ? ? android:layout_height="fill_content">?
? ? ? ? ? ? <TextView?
? ? ? ? ? ? ? ? android:layout_width="fill_parent"?
? ? ? ? ? ? ? ? android:layout_height="wrap_content"?
? ? ? ? ? ? ? ? android:text="Foo"/>?
? ? ? ? ? ? <TextView?
? ? ? ? ? ? ? ? android:layout_width="fill_parent"?
? ? ? ? ? ? ? ? android:layout_height="wrap_content"?
? ? ? ? ? ? ? ? android:text="Bar"/>?
? ? ? ? ? ? <TextView?
? ? ? ? ? ? ? ? android:layout_width="fill_parent"?
? ? ? ? ? ? ? ? android:layout_height="wrap_content"?
? ? ? ? ? ? ? ? android:text="Baz"/>?
? ? ? ? ? ? <TextView?
? ? ? ? ? ? ? ? android:layout_width="fill_parent"?
? ? ? ? ? ? ? ? android:layout_height="wrap_content"?
? ? ? ? ? ? ? ? android:text="etc"/>?
? ? ? ? </ScrollView>?
</LinearLayout>?