簡體   English   中英

更改Android的底部欄圖標大小

[英]Change Bottom Bar icon size android

我正在使用https://github.com/roughike/BottomBar庫來為Android創建底部欄,但我無法更改圖標的大小,是否知道如何使其變小?

Android底部欄

activity_main

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

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="ytstudios.wall.plus.MainActivity"
android:background="@color/colorAccent">

<android.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/colorPrimary"
    android:elevation="8dp">
</android.support.v7.widget.Toolbar>

<com.roughike.bottombar.BottomBar
    android:id="@+id/bottom_bar"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:layout_alignParentBottom="true"
    android:background="@color/colorPrimary"
    app:bb_tabXmlResource="@xml/bottom_tabs"
    app:bb_inActiveTabColor="@color/tabSelected"
    app:bb_inActiveTabAlpha="0.2"
    app:bb_behavior="iconsOnly"
    app:bb_activeTabColor="@color/tabSelected">
</com.roughike.bottombar.BottomBar> 

最簡單的方法是使用Android Asset Studio工具根據您的尺寸轉換圖標
當您減小工具中的資產大小時 ,圖標的大小將減小,並且將正確顯示。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM