尽管在渲染器中可见,但按钮在模拟器中的ListView上不可见

时间:2015-12-27 17:02:57

标签: android android-listview floating-action-button

这是我在列表视图布局xml文件中的代码

   <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@android:id/empty"
        android:text="No schedules available"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </TextView>

    <ListView android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:drawSelectorOnTop="false"
        android:layout_gravity="right|bottom"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

    <ImageButton
        android:layout_width="89dp"
        android:layout_height="56dp"
        android:id="@+id/add_schedule"
        android:layout_gravity="right"
        android:src="@mipmap/ic_add_fab"
        android:background="#00ffffff"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />


    </RelativeLayout>

该按钮在渲染器中可见,但在我的模拟器中不可见。 Suggesstions会很有帮助 整个设置在主细节流程

1 个答案:

答案 0 :(得分:1)

首先,您的按钮显示在模拟器中,但您没有看到它,因为它可能隐藏在ListView下。

你会说:

  

“我的ListView位于RelativeLayout”的左下角。

部分是正确的,但请注意 - 您将宽度设置为match_parent。更改此属性,让我们说30dp,我相信你会看到你的按钮。

尝试其他人建议Floating Action ButtonFAB)。这是一个很好的教程,如何正确使用它:https://guides.codepath.com/android/floating-action-buttons

如果您不喜欢它的标准实现,请查看此页面: https://android-arsenal.com/tag/173

希望有所帮助