如何最好地适应浮动操作按钮的自定义视图和Listview

时间:2016-07-13 08:15:44

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

我有一个带有edittext listview的XML布局和一个包含在linearlayout中的工厂,它在屏幕上占很大比例,如果我移除重量或玩它,我会得到一个非常小的按钮或裁剪。

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

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textPersonName"
    android:ems="10"
    android:id="@+id/inputSearch"
    android:hint="Αναζητηση" />

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:layout_margin="4dp">

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/listCustomers"
        android:layout_margin="5dp"
        android:dividerHeight="2dp" />
</LinearLayout>

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="2"
    android:layout_gravity="bottom|center"
    android:gravity="right"
    android:layout_margin="4dp">

    <android.support.design.widget.FloatingActionButton
        android:layout_width="56dp"
        android:layout_height="56dp"
        android:id="@+id/fab"
        app:backgroundTint="@android:color/holo_orange_light"
        android:layout_gravity="bottom|center"
        android:layout_margin="10dp"
        android:src="@drawable/ic_action_cross" />
</LinearLayout>

我如何才能最好地融入这三个元素?

1 个答案:

答案 0 :(得分:0)

用以下内容替换完整的布局:

/reports/category1/report1