How can I prevent my bottom toolbar with 3 images

2019-09-10 11:02发布

I have a bottom layout with three images. I want them to be equally distributed. To do this, I used the layout_weight xml property. But the visual representation of them is awful – the images are all stretched out

bottom layout

The images' dimension is 32*32.

The layout code for this particular toolbar is:

<?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>

How can I make them appear properly?

5条回答
混吃等死
2楼-- · 2019-09-10 11:34

There is this nice library that solves by problem:). It uses bottom navigation.

查看更多
聊天终结者
3楼-- · 2019-09-10 11:47

wrap ImageView in another layout say RelativeLayout.

i.e do something like this.

<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>

Hope this will help.

查看更多
干净又极端
4楼-- · 2019-09-10 11:52

Remove android:scaleType="fitXY" from your code.Because All it does is scale the bitmap up to the size of the ImageView.

Refer this.

<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>
查看更多
The star\"
5楼-- · 2019-09-10 11:58

set your imageview scale type as you want, there are different options

android:scaleType="fitXY"

or center, centerCrop,centerInside,fitCenter etc

查看更多
聊天终结者
6楼-- · 2019-09-10 12:01

Just use RelativeLayout like this:

<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>
查看更多
登录 后发表回答