如何在listView的右下角显示浮动指示器?

时间:2016-07-30 05:38:00

标签: android android-layout

如何在listView的右下角显示浮动指示符?

由于某种原因,下面的代码显示浮动指示或列表视图的左上角。

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/main_layout"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

    <include layout="@layout/toolbar_general"/>

    <RelativeLayout android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/contacts_list_view" />

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:layout_margin="@dimen/fab_margin"
            android:src="@android:drawable/ic_dialog_email" />

    </RelativeLayout>

</LinearLayout>

2 个答案:

答案 0 :(得分:1)

试试这个

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_layout"
android:fitsSystemWindows="true"
android:orientation="vertical">

<include layout="@layout/toolbar_general"/>

<RelativeLayout android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ListView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/contacts_list_view" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="@dimen/fab_margin"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="10dp"
        android:src="@android:drawable/ic_dialog_email" />

</RelativeLayout>

答案 1 :(得分:1)

问题在于您在floatingActionButton中使用的重力属性... android:gravity设置View中内容的重力而不是View本身。 相反......你应该使用alignParentBottom和alignParentRight属性来获得所需的结果...... 像这样...

<android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_margin="@dimen/fab_margin" android:src="@android:drawable/ic_dialog_email" />

希望这有帮助...