0

嗨我想做一個ListView水平滾動而不是垂直。Horizo​​ntalScrollView中的ListView不會是水平的嗎?

我想這個代碼讓ListView滾動水平,我也發現這個代碼在StackOverflow。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="#596287"> 

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:minHeight="380dp" 
    android:minWidth="380dp" 
    android:id="@+id/imageView" 
    android:layout_marginTop="5dp" 
    android:layout_alignParentTop="true" /> 

    <HorizontalScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_below="@+id/imageView" 
     android:layout_marginTop="5dp"> 
      <ListView 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:id="@+id/listView" 
       android:layout_weight="1"> 
      </ListView> 
    </HorizontalScrollView> 

我只是試圖讓一個具有ImageView的,其上的水平ListView控件的應用程序。像許多照片編輯應用程序或類似的東西。

但是ListView不是水平滾動的。 請幫幫我。

+0

使用recyclerview – petey

回答

相關問題