我想堆疊圖像視圖旁邊(70%重疊)。我使用了一個frameLayout,並給了每個elemnet填充10個。它的工作原理,但是這個填充在處理事件時會殺死我。有沒有更好的方式重疊視圖(使用不同的佈局..等)?我開發的Android 2.3堆疊重疊的圖像視圖
<RelativeLayout android:layout_height="fill_parent"
android:layout_width="fill_parent" >
<FrameLayout
android:id="@+id/frameLayoutBottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" >
<ImageView
android:id="@+id/ivBottom1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/c10" />
<ImageView
android:id="@+id/ivBottom2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:src="@drawable/c11" />
順便說一句,當我嘗試了保證金,而不是填充,圖像依然對的海誓山盟100%頂級
通過處理事件意味着什麼?點擊事件? – 2012-03-23 14:12:56
是或更具體的觸摸事件 – Snake 2012-03-23 14:53:16