2017-01-09 93 views
3
  • 我遇到了呈現滾動視圖的問題,在該視圖下面我想要一個列表視圖。
  • 我想要一個滾動視圖,其中我將添加圖像視圖和文本視圖,或者可能是其他UI元素。
  • 在此滾動視圖下方,我想要一個列表視圖。

但是,當我做到這一點,無論是在列表視圖和滾動視圖重疊,或僅滾動視圖呈現。在同一屏幕上呈現滾動視圖和列表視圖

XML代碼:Gist

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/content_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="com.example.dell.finalstartup.MainActivity" 
    tools:showIn="@layout/app_bar_main"> 

    <ProgressBar 
     android:id="@+id/progressBar" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:layout_centerVertical="true" /> 

    <!-- For pic of the day --> 
    <ScrollView 
     android:id="@+id/scrollView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"> 

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

      <LinearLayout 
       android:id="@+id/layout_PicOfTheDay" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"> 

       <TextView 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:text="Pic of the day example layout" 
        android:textSize="22sp" /> 

       <ImageView 
        android:id="@+id/picOfTheDay" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" /> 

      </LinearLayout> 

      <!-- Grey Line --> 
      <View 
       android:layout_width="match_parent" 
       android:layout_height="@dimen/gray_line_width" 
       android:background="#c0c0c0" /> 

     </LinearLayout> 
    </ScrollView> 

    <!-- For products --> 
    <ListView 
     android:id="@+id/list" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/scrollView" /> 

</RelativeLayout> 
+0

添加內部NestedScrollview –

+0

@Divyesh你的意思是這樣嗎? https://gist.github.com/AseedUsmani/190df5ff885109c34dd8b2cc7520bc2e 然後我得到這個錯誤 - '滾動型只能承載一個直接child' 雖然'ScrollView'我以前只有一個直接的孩子,一個線性佈局。 –

+0

先創建nestedScrollview,在裏面創建Verticle線性佈局。現在在線性佈局中添加scrollview和listview –

回答

1

它總是一個問題有相同的佈局多個滾動爲本次。您可以使用作爲V4庫一部分的嵌套滾動視圖。

<android.support.v4.widget.NestedScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fillViewport="true" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

    <ListView 
     android:id="@+id/list" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"/> 
</android.support.v4.widget.NestedScrollView> 

For more on layout_behaviour and nested scroll。

+0

https://gist.github.com/AseedUsmani/4e8b9faf0ddde73f16724679d72ec3f1 當我使用這個XML時,即使我有2個對象在我抓取的JSON中,即使在日誌中我只能得到兩個對象,但在列表中只添加了1個View。 –

+0

@AseedUsmani將您的滾動視圖替換爲嵌套滾動視圖。 – amalBit

+0

@AseedUsmani嵌套滾動視圖接受多個孩子..這樣的事情https://gist.github.com/amalChandran/3d65e914ddc675b841cdedc86163daa8 – amalBit

0

將相對佈局更改爲線性佈局將解決此問題。