0

我有一个固定在顶部的操作栏,一个包含主要 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>

第一个问题:为什么too​​ls_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>

目前的结果是这样的:

当前结果

任何帮助将不胜感激!

4

1 回答 1

0

尝试使用给定的代码块更改 tools_kvar.xml 以进行滚动视图

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:fillViewport="true"
    android:orientation="vertical" >

    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="2" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="test" />
    </TableLayout>
</ScrollView>
于 2011-12-30T08:54:11.723 回答