2012-04-11 93 views
2

我有< .ImageView>enter code here s(圖標)在我的android佈局xml文件中,它們包含在<ScrollView>中。需要有關Android固定頁腳的線性佈局幫助

例如,

<.ScrollView><br> 
<.LinearLayout><br> 
<.ImageView> ...<./ImageView><br> 
<./LinearLayout><br> 
<./ScrollView> 

對於這種佈局,我想附加一個固定頁腳。基本上一個小標籤出現在屏幕的底部,即使我滾動到一路向下或一直到頂部時仍然保留。

回答

5

我傾向於寫了這樣的佈局與孩子們LinearLayout作爲根元素和權重動態分配屏幕資源。它使佈局定義緊湊,不需要定義額外的ID。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <ScrollView 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1" > 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical" > 

      <ImageView ... /> 
      <ImageView ... /> 
      ... 
      <ImageView ... /> 

     </LinearLayout> 
    </ScrollView> 

    <!-- footer here --> 
    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" > 
     ... 
    </LinearLayout> 
</LinearLayout> 

使用RelativeLayout爲根元素,與位於「上面」的底端對齊頁腳ScrollView,然而,可能是在性能方面略勝一籌,但我懷疑它就會在一個noticable不同像這樣的簡單視圖層次結構的情況。 RelativeLayout方法確實需要分配一些id(至少對於頁腳,我會說)。

+0

非常感謝,這正是我一直在尋找的。 – anonymous123 2012-04-11 13:24:41

+0

另外我想知道,如果我們使用相對佈局,那麼您的意思是更好的表現。 – anonymous123 2012-04-11 13:25:12

+0

佈局權重需要一個小部件來測量兩次。特別是當你開始用非零權重嵌套'LinearLayout'時,這是一件壞事,因爲測量次數呈指數增長。這正是現今Lint工具在這些情況下向您顯示警告的原因。通常(也是在這種情況下),您可以使用「RelativeLayout」實現相同的佈局。如果你需要一個例子,我很樂意將它添加到上面的答案中。 – 2012-04-11 19:21:50

1

這樣的事情..

<.ScrollView> 
<.LinearLayout> 
<.ImageView> ...<./ImageView> 
<./LinearLayout> 
<./ScrollView> 
<LinearLayout> 
<-- your footer here --> 
</LinearLayout> 
0

U可以嘗試這樣也..

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/relativeLayout1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 

    <ScrollView 
     android:id="@+id/scrollView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" > 

     <LinearLayout 
      android:id="@+id/linearLayout1" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical" > 

      <ImageView 
       android:id="@+id/imageView1" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView2" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView3" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView1" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView4" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView5" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView1" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView6" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView7" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView14" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 
      <ImageView 
       android:id="@+id/imageView11" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView8" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 
      <ImageView 
       android:id="@+id/imageView12" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

      <ImageView 
       android:id="@+id/imageView9" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/ic_launcher" /> 

     </LinearLayout> 
    </ScrollView> 

    <RelativeLayout 
     android:id="@+id/relativeLayout2" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@drawable/blackbg" 
     android:layout_alignParentBottom="true" > 

     <Button 
      android:id="@+id/button1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentTop="true" 
      android:text="Button" /> 

    </RelativeLayout> 

</RelativeLayout>