<ScrollView
android:id="@+id/layout_guide_detail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="55dp"
>
<Button
android:id="@+id/btn_guideTab_backButton"
android:layout_width="50dp"
android:layout_height="50dp"
android:background="@drawable/backicon_round"/>
<TextView
android:id="@+id/text_guideTab_detail_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:textColor="@color/color_green"
android:text="Error"
android:textSize="19dp" />
</RelativeLayout>
<ListView
android:id="@+id/list_guideTab_detail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"></ListView>
</LinearLayout>
</ScrollView>
滾動視圖有標題按鈕和文本,其餘是一個ListView滾動視圖是不可滾動
我想要做的是滾動整個屏幕(包括但是問題是,當我嘗試滾動屏幕時,我只能滾動列表視圖...
看看這個簡單的圖書館https://android-arsenal.com/details/1/1919 –
使用'RecyclerView'和'wrap_content' –