- 我遇到了呈現滾動視圖的問題,在該視圖下面我想要一個列表視圖。
- 我想要一個滾動視圖,其中我將添加圖像視圖和文本視圖,或者可能是其他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>
添加內部NestedScrollview –
@Divyesh你的意思是這樣嗎? https://gist.github.com/AseedUsmani/190df5ff885109c34dd8b2cc7520bc2e 然後我得到這個錯誤 - '滾動型只能承載一個直接child' 雖然'ScrollView'我以前只有一個直接的孩子,一個線性佈局。 –
先創建nestedScrollview,在裏面創建Verticle線性佈局。現在在線性佈局中添加scrollview和listview –