首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

悬浮高层控件不受ScrollView影响

2012-09-22 
悬浮顶层控件不受ScrollView影响?xml version1.0 encodingutf-8??LinearLayout xmlns:androidh

悬浮顶层控件不受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>?

热点排行