如何防止底部工具栏中有3个图像被拉伸?

时间:2016-05-16 07:20:25

标签: android image layout toolbar android-layout-weight

我有三个图像的底部布局。我希望它们能够平均分配。为此,我使用了layout_weight xml属性。但是它们的视觉表现很糟糕 - 图像都被拉伸了

bottom layout

图像尺寸为32 * 32。

此特定工具栏的布局代码为:

<?xml version="1.0" encoding="utf-8"?>

 <android.support.v7.widget.Toolbar     
 xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/toolbar_bottom"
xmlns:appo="http://schemas.android.com/apk/res-auto"
android:minHeight="50dp"
android:background="#ffff8c0e"
appo:theme="@style/ToolbarTheme"
android:minWidth="50dp"
android:elevation="10dp"
>
<LinearLayout
    android:id="@+id/toolbarmenucontainer"
    android:layout_width="match_parent"
    android:weightSum="3"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <ImageView
        android:layout_width="0dp"
        android:id="@+id/camera_image"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:clickable="true"

        android:scaleType="fitXY"
        android:src="@drawable/camera_icon"
        />

    <ImageView
        android:id="@+id/news_image"
        android:layout_width="0dp"
        android:layout_height="wrap_content"

        android:clickable="true"
        android:scaleType="fitXY"
        android:layout_weight = "1"
        android:src="@drawable/new_icon"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" />
    <ImageView
        android:id="@+id/facebook_image"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"

        android:clickable="true"
        android:scaleType="fitXY"
        android:src="@drawable/facebooc_image"
       />
</LinearLayout>

如何让它们正确显示?

5 个答案:

答案 0 :(得分:3)

ImageView换成另一个布局,说RelativeLayout

即做这样的事情。

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:appo="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar_bottom"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#ffff8c0e"
    android:elevation="10dp"
    android:minHeight="50dp"
    android:minWidth="50dp"
    appo:theme="@style/ToolbarTheme" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/toolbarmenucontainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:weightSum="3" >

        <RelativeLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" >

            <ImageView
                android:id="@+id/camera_image"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:clickable="true"
                android:scaleType="fitXY"
                android:src="@drawable/camera_icon" />
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" >

            <ImageView
                android:id="@+id/news_image"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_centerInParent="true"
                android:clickable="true"
                android:scaleType="fitXY"
                android:src="@drawable/new_icon" />
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" >

            <ImageView
                android:id="@+id/facebook_image"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:clickable="true"
                android:scaleType="fitXY"
                android:src="@drawable/facebooc_image" />
        </RelativeLayout>
    </LinearLayout>
</android.support.v7.widget.Toolbar>

希望这会有所帮助。

答案 1 :(得分:3)

  

从代码中删除android:scaleType="fitXY"。因为它所做的只是将位图缩放到ImageView的大小。

请参阅此内容。

<LinearLayout
        android:id="@+id/toolbarmenucontainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:weightSum="3">

        <ImageView
            android:id="@+id/camera_image"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:clickable="true"
            android:src="@mipmap/ic_launcher" />

        <ImageView
            android:id="@+id/news_image"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:clickable="true"
            android:src="@mipmap/ic_launcher" />

        <ImageView
            android:id="@+id/facebook_image"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:clickable="true"
            android:src="@mipmap/ic_launcher" />
    </LinearLayout>

答案 2 :(得分:0)

只需像这样使用RelativeLayout:

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

    <ImageView
        android:layout_width="wrap_content"
        android:id="@+id/camera_image"
        android:layout_height="wrap_content"
        android:clickable="true"
        android:src="@drawable/camera_icon"
        android:scaleType="fitXY"
        />

    <ImageView
        android:id="@+id/news_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:clickable="true"
        android:src="@drawable/new_icon"
        android:scaleType="fitXY"/>
    <ImageView
        android:id="@+id/facebook_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_alignParentRight="true"
        android:clickable="true"
        android:scaleType="fitXY"
        android:src="@drawable/facebooc_image"/></RelativeLayout>

答案 3 :(得分:0)

根据需要设置您的imageview比例类型,有不同的选项

android:scaleType="fitXY"

centercenterCropcenterInsidefitCenter

答案 4 :(得分:0)

有一个很好的library可以解决问题:)。它使用底部导航。