0

我想問你是否有可能在另一個視圖上方放置按鈕。我想要實現的是帶有ListView和圓形按鈕的活動,該按鈕從屏幕右側「進入」。但是,如果有人向下滾動,則按鈕必須保持在其位置上,並且一旦按下,就會調用新的片段。事實上,我一開始就陷入困境,不知道該怎麼做,所以每一條建議/暗示/建議都是值得歡迎的。Android - 右側屏幕按鈕

PS:按鈕應該用於新的項目加入到ListView控件

而且,我創建了一個草圖更好的解釋。

感謝, 問候

enter image description here

+1

你可以使用的FrameLayout。 – 2014-10-08 14:04:50

+1

嘗試將Thos元素放置在RelativeLayout中並設置按鈕的屬性android:align_ParentRight =「true」and android:center_vertically =「true」 – 2014-10-08 14:06:27

+0

感謝這樣一個快速回復的人,但是如果向下滾動,按鈕不會向下移動,物品'以及? – jpact 2014-10-08 14:08:09

回答

1

我想對你和它工作正常。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="#FFFFFF" > 

<ListView 
    android:id="@+id/listAlertItems" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:dividerHeight="1px" 
    android:listSelector="@android:color/transparent" /> 

<ImageView 
    android:id="@+id/clickBtn" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentRight="true" 
    android:layout_centerInParent="true" 
    android:src="@drawable/ic_img" /> 

這是結果:

enter image description here

+0

非常感謝@Farouk Touzi :) – jpact 2014-10-08 14:41:03

+1

感謝Juan Aguilar Guisado也:) – 2014-10-08 14:44:26