0
我添加滾動後我嘗試更改滾動視圖的高度 列表中的scrollview
列表,因此列表位於佈局的中心並且高度更大但它不起作用。帶有滾動視圖的列表
我添加滾動後我嘗試更改滾動視圖的高度 列表中的scrollview
列表,因此列表位於佈局的中心並且高度更大但它不起作用。帶有滾動視圖的列表
ListView
是可滾動的。您不能將ListView
放入ScrollView
之內。
你在哪裏讀到的ListView滾動型擴展嘗試的代碼
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_all_1" >
<LinearLayout
android:id="@+id/bottom_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:orientation="vertical" >
</LinearLayout>
<include
android:id="@+id/top_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="40dp"
android:layout_marginTop="91dp"
layout="@layout/layout_header" />
<include
android:id="@+id/footer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/bottom_menu"
android:layout_alignParentLeft="true"
android:layout_marginBottom="40dp"
layout="@layout/layout_footer" />
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_above="@+id/footer"
android:layout_below="@+id/top_header"
android:layout_centerHorizontal="true" >
</ListView>
</RelativeLayout>
這個樣本? – Blackbelt
噢,我的,你是對的。對不起。但它是可滾動的,它無法在ScrollView中正常工作^^' – Agata
你確定嗎?那麼我可以改變它的高度呢?告訴我我該怎麼做:( – sara