アイコンがシルエットにならない AHBottomNavigation を作った
これはなにか
Before | After |
---|---|
AHBottomNavigation は指定したタブのアイコンが強制的にアイコンシルエットになりますが、タブのアイコンにオリジナルの画像そのままを表示できるようにしました。
ソースコード
https://github.com/yhirano/ahbottomnavigation/tree/cancel_tint_icon
インストール
allprojects {
repositories {
// ...
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile 'com.github.yhirano:ahbottomnavigation:2.0.6-p1'
}
使い方
allprojects {
repositories {
// ...
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile 'com.github.yhirano:ahbottomnavigation:2.0.6-p1'
}
AHBottomNavigationItem はオリジナルのコンストラクタを排し、Builderでインスタンスを作るように変更しました。
他の基本的な使い方はオリジナルの AHBottomNavigation と同じ。
AHBottomNavigationItem item1 =
new AHBottomNavigationItem.Builder(R.string.tab_1, R.drawable.ic_maps_place)
.setColorRes(R.color.color_tab_1)
.setTintDrawableActive(false) // タブがアクティブな際にアイコンをシルエットにしないようにする
.setTintDrawableInactive(false) // タブが非アクティブな際にアイコンをシルエットにしないようにする
.build();
なお、 XMLリソースからのタブを作成する場合のタブのアイコンの非シルエット機能には対応していません。
Author And Source
この問題について(アイコンがシルエットにならない AHBottomNavigation を作った), 我々は、より多くの情報をここで見つけました https://qiita.com/hirano/items/937cc49b217077ee1d0a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .