<?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>
悬浮顶层控件不受ScrollView影响
最新推荐文章于 2021-03-31 19:50:21 发布