我想補充像這樣的佈局:添加布局屏幕底部的Android
<header layout>(Fixed)
|
|
<ScrollView>
|
|
<Footer Layout>(Fixed)
這裏是我試過到目前爲止:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ScrollView
android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@id/footer" >
<LinearLayout
android:id="@+id/liMain"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
</RelativeLayout>
首先,谷歌關於android佈局設計的基本概念。 –