我有以下佈局,由於某種原因,ScrollView與覆蓋視圖重疊。 我不完全理解android中的weight和layout_weight屬性的全部用法。 我在想,這與我的問題有關。Android ScrollView重疊 - 重量?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/topbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:adjustViewBounds="true"
android:scaleType="fitXY"
/>
<ImageView
android:id="@+id/secondbar"
android:adjustViewBounds="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/topbarr"
android:scaleType="fitXY"
/>
<ScrollView
android:id="@+id/buttonlistview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_below="@+id/secondbar"
android:scrollbarFadeDuration="0"
>
</ScrollView>
</RelativeLayout>
你的問題不是由重量造成的(請參考下面的答案),但如果你想知道更多關於他們,你可以參考這裏http://stackoverflow.com/questions/3995825/what-does- androidlayout-weight-mean – ipohfly
首先是在相對佈局中,weight屬性不起作用,如果你想添加比你可以使用線性佈局和維持多重支持功能的重量。 –