LinearLayout定位三个按钮,它们之间具有相同的填充

时间:2017-07-28 18:23:34

标签: java android

我想在行中使用相同的填充放置三个浮动操作按钮。结果应该是这样的。 How it should look(来自iOS谷歌翻译应用程序)

但是现在它看起来像这样:How it look right now(中间捕获FAB将不可见)。

这是我的布局文件:

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto" >

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/relativeLayoutCamera2">

        <TextureView
            android:id="@+id/textureView"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <LinearLayout
            android:gravity="bottom"
            android:layout_alignParentBottom="true"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:id="@+id/baseline"
            android:weightSum="3"
            android:background="@color/strapGrey">

            <android.support.design.widget.FloatingActionButton
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:id="@+id/browseImagesFAB"
                android:src="@drawable/ic_photo_library_white_24dp"
                app:elevation="0dp"
                android:layout_weight="1"
                android:paddingTop="10dp"
                android:paddingBottom="10dp"
                app:backgroundTint="@color/strapGrey"
                app:fabSize="mini"/>

            <android.support.design.widget.FloatingActionButton
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:id="@+id/captureInvisible"
                android:src="@drawable/ic_photo_camera_white_24dp"
                app:fabSize="mini"
                android:layout_gravity="center_horizontal"
                android:layout_weight="1"
                android:paddingTop="10dp"
                android:paddingBottom="10dp"
                app:backgroundTint="@color/strapGrey" />

            <android.support.design.widget.FloatingActionButton
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:id="@+id/flashFAB"
                android:src="@drawable/ic_flash_off_white_24dp"
                app:elevation="0dp"
                android:layout_weight="1"
                android:paddingTop="10dp"
                android:paddingBottom="10dp"
                app:backgroundTint="@color/strapGrey"
                app:fabSize="mini"/>

        </LinearLayout>

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/captureImageFAB"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="@dimen/fab_margin"
            android:src="@drawable/ic_photo_camera_white_24dp"
            app:fabSize="normal"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true" />

    </RelativeLayout>

</android.support.design.widget.CoordinatorLayout>

我已经尝试设置android:layout_weight,因为你可以在那里看到,但它只是不起作用。请帮忙!

2 个答案:

答案 0 :(得分:1)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.vzw.www.myapplication.MainActivity"
android:gravity="center">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="5dp">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1"
        android:layout_weight="0.33"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1"
        android:layout_weight="0.33"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1"
        android:layout_weight="0.33"/>


</LinearLayout>

这将使这个&gt;

enter image description here

此外,他们不必是按钮。您可以使用ImageViews或TextViews执行相同的操作。

答案 1 :(得分:0)

这是实现设计的一个非常简单的示例

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

<android.support.design.widget.FloatingActionButton
    android:layout_width="60dp"
    android:layout_height="60dp"
    android:layout_gravity="bottom|center_horizontal" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="@dimen/bottom_nav_height"
    android:layout_gravity="bottom"
    android:background="#757575"
    android:weightSum="3">

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/iv_nav_voucher"
            android:layout_width="24dp"
            android:layout_height="24dp"
            android:layout_gravity="center"
            android:clickable="false"
            android:focusableInTouchMode="false"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>

    <View
        android:id="@+id/nav_center"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="horizontal"></View>

    <LinearLayout
        android:id="@+id/nav_other"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/iv_nav_other"
            android:layout_width="24dp"
            android:layout_height="24dp"
            android:clickable="false"
            android:focusableInTouchMode="false"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>
</LinearLayout>

结果应该是这样的 enter image description here