我有一个固定在顶部的操作栏,一个包含主要 UI 内容的 ScrollView,以及一个我想保留在屏幕底部的页脚(但我无法做到)。注意:我为调试做了一个绿色和另一个红色的布局。
XML 方面,我有一个基本的 XML 文件,我稍后会填充它:
base_layout.xml:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include layout="@layout/actionbar" />
<ScrollView
android:orientation="vertical"
android:fillViewport="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:id="@+id/main_menu_layout"
android:orientation="vertical"
android:background="#00FF00" <!-- Note: GREEN -->
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>
</ScrollView>
</LinearLayout>
有些活动会有 PrefsBar 而有些则没有,这就是为什么我在 base_layout.xml 文件中没有“include layout="@layout/prefs_bar"”(见下文)......以及为什么我没有t 使用相对布局。
在我的活动中,我执行以下操作:
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.base_layout);
LinearLayout emptyMainLayout = (LinearLayout)findViewById(R.id.main_menu_layout);
LayoutInflater inflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View menuRowLayout = inflater.inflate(R.layout.tools_kvar, null);
emptyMainLayout.addView(menuRowLayout);
tools_kvar.xml 文件包含:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF0000" > <!-- Note: RED -->
<ScrollView
android:orientation="vertical"
android:fillViewport="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="2">
< .... ETC .... >
</TableLayout>
</ScrollView>
<include layout="@layout/prefs_bar" />
</LinearLayout>
第一个问题:为什么tools_kvar.xml(RED)中的主要LinearLayout没有填满所有外部布局?android:layout_height="fill_parent" 已设置!
prefs_bar.xml(见上文)是我需要固定在屏幕底部的。它包含:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/prefs_bar_layout"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/evengrayer"
android:gravity="bottom"
android:layout_gravity="bottom">
<TextView ... ETC ...
</LinearLayout>
目前的结果是这样的:
任何帮助将不胜感激!