私の質問は この質問 と同じです(これはではないこの質問 の複製です) 。
その質問に対する 回答のみ は、デフォルトのハンバーガーアイコンをleftアクティビティのタイトルの場合、追加のハンバーガーアイコンがアクティビティのタイトルのrightに追加されるだけです。
だから私は実際にこれをどうやって得るのですか:
私はそれを一日中ぶらついていましたが、どこにも行きませんでした。
Toolbar
にはsetNavigationIcon(Drawable drawable)
メソッドがあることがわかります。理想的には、layout
の代わりにDrawable
(ハンバーガーアイコンとバッジビューを含む)を使用したいのですが、これが実現可能かどうか、または実現可能かどうかはわかりません。もっと良い方法はありますか?
NB-これは、バッジビューを作成する方法についての質問ではありません。私はそれをすでに作成し、ナビゲーションメニュー項目自体に実装しています。だから私は今、デフォルトのハンバーガーアイコンに同様のバッジビューを追加する必要があるだけです。
サポートライブラリのバージョン24.2.0以降、ActionBarDrawerToggle
のv7バージョンは、トグルアイコンをカスタマイズする手段としてsetDrawerArrowDrawable()
メソッドを提供しています。 DrawerArrowDrawable
は、デフォルトのアイコンを提供するクラスであり、必要に応じて変更するためにサブクラス化できます。
例として、BadgeDrawerArrowDrawable
クラスはdraw()
メソッドをオーバーライドして、スーパークラスがそれ自体を描画した後に基本的な赤と白のバッジを追加します。これにより、ハンバーガー矢印アニメーションを下に保持できます。
_import Android.content.Context;
import Android.graphics.Color;
import Android.graphics.Canvas;
import Android.graphics.Paint;
import Android.graphics.Rect;
import Android.graphics.Typeface;
import Android.support.v7.graphics.drawable.DrawerArrowDrawable;
import Java.util.Objects;
public class BadgeDrawerArrowDrawable extends DrawerArrowDrawable {
// Fraction of the drawable's intrinsic size we want the badge to be.
private static final float SIZE_FACTOR = .3f;
private static final float HALF_SIZE_FACTOR = SIZE_FACTOR / 2;
private Paint backgroundPaint;
private Paint textPaint;
private String text;
private boolean enabled = true;
public BadgeDrawerArrowDrawable(Context context) {
super(context);
backgroundPaint = new Paint();
backgroundPaint.setColor(Color.RED);
backgroundPaint.setAntiAlias(true);
textPaint = new Paint();
textPaint.setColor(Color.WHITE);
textPaint.setAntiAlias(true);
textPaint.setTypeface(Typeface.DEFAULT_BOLD);
textPaint.setTextAlign(Paint.Align.CENTER);
textPaint.setTextSize(SIZE_FACTOR * getIntrinsicHeight());
}
@Override
public void draw(Canvas canvas) {
super.draw(canvas);
if (!enabled) {
return;
}
final Rect bounds = getBounds();
final float x = (1 - HALF_SIZE_FACTOR) * bounds.width();
final float y = HALF_SIZE_FACTOR * bounds.height();
canvas.drawCircle(x, y, SIZE_FACTOR * bounds.width(), backgroundPaint);
if (text == null || text.length() == 0) {
return;
}
final Rect textBounds = new Rect();
textPaint.getTextBounds(text, 0, text.length(), textBounds);
canvas.drawText(text, x, y + textBounds.height() / 2, textPaint);
}
public void setEnabled(boolean enabled) {
if (this.enabled != enabled) {
this.enabled = enabled;
invalidateSelf();
}
}
public boolean isEnabled() {
return enabled;
}
public void setText(String text) {
if (!Objects.equals(this.text, text)) {
this.text = text;
invalidateSelf();
}
}
public String getText() {
return text;
}
public void setBackgroundColor(int color) {
if (backgroundPaint.getColor() != color) {
backgroundPaint.setColor(color);
invalidateSelf();
}
}
public int getBackgroundColor() {
return backgroundPaint.getColor();
}
public void setTextColor(int color) {
if (textPaint.getColor() != color) {
textPaint.setColor(color);
invalidateSelf();
}
}
public int getTextColor() {
return textPaint.getColor();
}
}
_
このインスタンスは、インスタンス化された後はいつでもトグルに設定でき、必要に応じてバッジのプロパティをドローアブルに直接設定できます。
下記のOPのように、カスタムContext
に使用されるDrawerArrowDrawable
は、正しいスタイル値が使用されるように、ActionBar#getThemedContext()
またはToolbar#getContext()
で取得する必要があります。例えば:
_private ActionBarDrawerToggle toggle;
private BadgeDrawerArrowDrawable badgeDrawable;
...
toggle = new ActionBarDrawerToggle(this, ...);
badgeDrawable = new BadgeDrawerArrowDrawable(getSupportActionBar().getThemedContext());
toggle.setDrawerArrowDrawable(badgeDrawable);
badgeDrawable.setText("1");
...
_
少し単純にするために、ActionBarDrawerToggle
もサブクラス化し、トグルインスタンスを介してすべてを処理することをお勧めします。
_import Android.app.Activity;
import Android.content.Context;
import Android.support.v4.widget.DrawerLayout;
import Android.support.v7.app.ActionBarDrawerToggle;
import Android.support.v7.widget.Toolbar;
import Java.lang.reflect.Field;
import Java.lang.reflect.Method;
public class BadgeDrawerToggle extends ActionBarDrawerToggle {
private BadgeDrawerArrowDrawable badgeDrawable;
public BadgeDrawerToggle(Activity activity, DrawerLayout drawerLayout,
int openDrawerContentDescRes,
int closeDrawerContentDescRes) {
super(activity, drawerLayout, openDrawerContentDescRes,
closeDrawerContentDescRes);
init(activity);
}
public BadgeDrawerToggle(Activity activity, DrawerLayout drawerLayout,
Toolbar toolbar, int openDrawerContentDescRes,
int closeDrawerContentDescRes) {
super(activity, drawerLayout, toolbar, openDrawerContentDescRes,
closeDrawerContentDescRes);
init(activity);
}
private void init(Activity activity) {
Context c = getThemedContext();
if (c == null) {
c = activity;
}
badgeDrawable = new BadgeDrawerArrowDrawable(c);
setDrawerArrowDrawable(badgeDrawable);
}
public void setBadgeEnabled(boolean enabled) {
badgeDrawable.setEnabled(enabled);
}
public boolean isBadgeEnabled() {
return badgeDrawable.isEnabled();
}
public void setBadgeText(String text) {
badgeDrawable.setText(text);
}
public String getBadgeText() {
return badgeDrawable.getText();
}
public void setBadgeColor(int color) {
badgeDrawable.setBackgroundColor(color);
}
public int getBadgeColor() {
return badgeDrawable.getBackgroundColor();
}
public void setBadgeTextColor(int color) {
badgeDrawable.setTextColor(color);
}
public int getBadgeTextColor() {
return badgeDrawable.getTextColor();
}
private Context getThemedContext() {
// Don't freak about the reflection. ActionBarDrawerToggle
// itself is already using reflection internally.
try {
Field mActivityImplField = ActionBarDrawerToggle.class
.getDeclaredField("mActivityImpl");
mActivityImplField.setAccessible(true);
Object mActivityImpl = mActivityImplField.get(this);
Method getActionBarThemedContextMethod = mActivityImpl.getClass()
.getDeclaredMethod("getActionBarThemedContext");
return (Context) getActionBarThemedContextMethod.invoke(mActivityImpl);
}
catch (Exception e) {
return null;
}
}
}
_
これにより、カスタムバッジドローアブルが自動的に設定され、トグルに関連するすべてのものが単一のオブジェクトで管理できます。
BadgeDrawerToggle
はActionBarDrawerToggle
のドロップイン置換であり、そのコンストラクターはまったく同じです。
_private BadgeDrawerToggle badgeToggle;
...
badgeToggle = new BadgeDrawerToggle(this, ...);
badgeToggle.setBadgeText("1");
...
_