2014-10-29 60 views
0

我在horizo​​ntalScrollView中有三個listviews。我想通過將它們包含到設置爲(layout_width:match_parent,layout_height:match_parent)的線性佈局中,讓它們佔據整個屏幕。但是,它不起作用。正如你從屏幕截圖看到的那樣,三個列表視圖緊密相連。如何在horizo​​ntalScrollView中設置列表視圖以填滿屏幕?

任何建議,使三個listview每個佔據全屏?多謝。

enter image description here

<HorizontalScrollView 
    android:id="@+id/horizontalScrollView" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="@color/page_bg_color"> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="horizontal"> 

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

      <ListView 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:id="@+id/tab_login_myFriends_requestList" 
       android:background="#ffffffff" /> 
     </LinearLayout> 

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

      <ListView 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:id="@+id/tab_login_myFriends_pendingList" 
       android:background="#ffffffff" /> 
     </LinearLayout> 

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

      <ListView 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:id="@+id/tab_login_myFriends_confirmedList" 
       android:background="#ffffffff" /> 
     </LinearLayout> 
    </LinearLayout> 
</HorizontalScrollView> 
+0

告訴我們您的XML? – Hades 2014-10-29 03:18:30

+0

你是什麼意思佔據整個屏幕?你有3個列表視圖?你想要一個接近另一個的東西嗎?等比例? – Hades 2014-10-29 03:25:39

回答

1

使用此,

http://developer.android.com/reference/android/widget/ScrollView.html#attr_android:fillViewport

設置爲true。此外,您的列表視圖可能應該有一個與它們相關的權重屬性。

但我真的不知道你想做什麼。也許提供的XML,我會進一步指導你。

我想你要尋找的是這樣的,

http://developer.android.com/training/animation/screen-slide.html

+0

thx。只是添加了我的xml – Derekyy 2014-10-29 03:20:57

+0

@Derekyy看看我的回答 – Hades 2014-10-29 03:27:52

+0

是的,屏幕幻燈片是我喜歡的東西。謝謝。現在閱讀。 – Derekyy 2014-10-29 03:28:58

相關問題