2011-05-02 135 views
0

我想在我的活動屏幕的底部顯示兩個按鈕,但每次我填充屏幕時使我滾動的視圖,屏幕底部的兩個按鈕消失。當沒有必要滾動按鈕時顯示正常。請致電 謝謝。佈局顯示問題,每當我必須滾動

佈局代碼 XML版本= 「1.0」 編碼= 「UTF-8」>

<LinearLayout 
    android:id="@+id/lin_layout_list_view" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical" 
     android:isScrollContainer="true" 
     android:paddingLeft="8dp" 
     android:paddingRight="8dp"> 

     <ListView android:id="@+id/android:list" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
     /> 
    </LinearLayout> 

    <RelativeLayout 
     android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:padding="2px" 
      android:layout_gravity="bottom" 
      > 
      <TableLayout 
       android:layout_below="@id/lin_layout_list_view" 
       android:layout_alignParentBottom="true" 
       android:gravity="bottom" 
       android:layout_width ="fill_parent" 
       android:layout_height="wrap_content" 
       android:stretchColumns="0,1"> 

       <TableRow 
        android:orientation="horizontal"> 
        <Button android:id="@+id/ws_button_back" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
          android:text=" Back " 
         /> 

        <Button android:id="@+id/ws_button_ok" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
          android:text=" Ok "/> 

       </TableRow> 

      </TableLayout>   

     </RelativeLayout> 
</LinearLayout> 

+1

那麼,你的佈局可能有問題。我想,但你可以自己想出來,你可能想要展示的是你的佈局代碼,所以我們可以告訴你什麼可能是錯的,不是? – Nanne 2011-05-02 19:40:02

+0

請分享您的佈局,謝謝。 – rekaszeru 2011-05-02 20:47:05

回答

0

裹與滾動內容沿按鈕(例如:-Listview)?在滾動視圖中,然後顯示內容。

+0

我已經將它包裹在滾動視圖中,但是一旦我必須滾動,仍然不會在列表底部顯示按鈕。這裏是我的佈局代碼。 – jjjdag 2011-05-05 10:25:11