Android - 右侧屏幕按钮

时间:2014-10-08 14:02:12

标签: android user-interface android-listview android-button android-scrollview

我想问你是否可以在另一个视图上方放置一个按钮。我想要实现的是ListView和圆形Button的活动,它是从屏幕右侧“来”。但是,如果有人向下滚动,按钮必须保持在它的位置,一旦按下它,就会调用新的片段。事实上,我一开始就陷入困境,不知道如何做到这一点,所以欢迎每一条建议/提示/建议。

PS:按钮应该用于将新项目添加到ListView

另外,我已经创建了一个草图以便更好地解释。

谢谢, 此致

enter image description here

1 个答案:

答案 0 :(得分: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