web-dev-qa-db-ja.com

ツールバーナビゲーションアイコンビューリファレンスを取得する

Toolbar(チュートリアルで作業中)の引き出しアイコンを強調表示したいと思います。そのためには、その位置が必要です。ドロワーのナビゲーションアイコン(ハンバーガー)ビューへの参照を取得するにはどうすればよいですか?

16
Singed

ビューのコンテンツの説明を利用してから、findViewWithText()メソッドを使用してビューの参照を取得できます

 public static View getToolbarNavigationIcon(Toolbar toolbar){
        //check if contentDescription previously was set
        boolean hadContentDescription = !TextUtils.isEmpty(toolbar.getNavigationContentDescription());
        String contentDescription = hadContentDescription ? toolbar.getNavigationContentDescription() : "navigationIcon";
        toolbar.setNavigationContentDescription(contentDescription);
        ArrayList<View> potentialViews = new ArrayList<View>();
        //find the view based on it's content description, set programatically or with Android:contentDescription
        toolbar.findViewsWithText(potentialViews,contentDescription, View.FIND_VIEWS_WITH_CONTENT_DESCRIPTION);
        //Nav icon is always instantiated at this point because calling setNavigationContentDescription ensures its existence 
        View navIcon = null;
        if(potentialViews.size() > 0){
            navIcon = potentialViews.get(0); //navigation icon is ImageButton
        }
         //Clear content description if not previously present
        if(!hadContentDescription)
            toolbar.setNavigationContentDescription(null);
        return navIcon;
     }

もっと

Kotlin拡張プロパティ:

val Toolbar.navigationIconView: View?
        get() {
            //check if contentDescription previously was set
            val hadContentDescription = !TextUtils.isEmpty(navigationContentDescription)
            val contentDescription = if (hadContentDescription) navigationContentDescription else "navigationIcon"
            navigationContentDescription = contentDescription
            val potentialViews = arrayListOf<View>()
            //find the view based on it's content description, set programatically or with Android:contentDescription
            findViewsWithText(potentialViews, contentDescription, View.FIND_VIEWS_WITH_CONTENT_DESCRIPTION)
            //Clear content description if not previously present
            if (!hadContentDescription) {
                navigationContentDescription = null
            }
            //Nav icon is always instantiated at this point because calling setNavigationContentDescription ensures its existence
            return potentialViews.firstOrNull()
        }
23

デバッグモードでツールバーの子ビューを調べたところ、ドロワーアイコンがImageButtonとしてそこにあることがわかりました。 (Elltzに感謝)

2つの子(LinearLayoutとImageView)を持つカスタムxmlレイアウトのツールバーを使用しているため、ツールバーには最終的に4つの子があり、次の位置にあります。

[0] LinearLayout(from custom xml)
[1] ImageView(from custom xml)
[2] ImageButton(drawer icon)
[3] ActionMenuView(menu icon)

これを知って、私は今使用することができます:

View drawerIcon = toolbar.getChildAt(2);

ドロワーメニューアイコンへの参照を取得します。私の場合、位置は2です。この位置は、カスタムツールバーレイアウトの子ビューの数と同じである必要があります。

誰かがより良い解決策を見つけたら、私に知らせてください。

7
Singed

ツールバーのナビゲーションアイコンを表すDrawableを取得したい場合は、次のようにします。

Drawable d = mToolbar.getNavigationIcon();

次のようなメソッドを使用すると、ツールバーのナビゲーションアイコンに使用されるImageButtonへの参照を取得できます。

public ImageButton getToolbarNavigationButton() {
    int size = mToolbar.getChildCount();
    for (int i = 0; i < size; i++) {
        View child = mToolbar.getChildAt(i);
        if (child instanceof ImageButton) {
            ImageButton btn = (ImageButton) child;
            if (btn.getDrawable() == mToolbar.getNavigationIcon()) {
                return btn;
            }
        }
    }
    return null;
}
5
Michio

即興 @ Nikola Despotoski's 回答

public static View getNavigationIconView(Toolbar toolbar) { 

    String previousContentDescription = (String) toolbar.getNavigationContentDescription();
    // Check if contentDescription previously was set
    boolean hadContentDescription = !TextUtils.isEmpty(previousContentDescription);
    String contentDescription = hadContentDescription ? 
            previousContentDescription : "navigationIcon";
    toolbar.setNavigationContentDescription(contentDescription);

    ArrayList<View> potentialViews = new ArrayList<>();
    // Find the view based on it's content description, set programmatically or with
    // Android:contentDescription
    toolbar.findViewsWithText(potentialViews, contentDescription,
            View.FIND_VIEWS_WITH_CONTENT_DESCRIPTION);

    // Nav icon is always instantiated at this point because calling
    // setNavigationContentDescription ensures its existence
    View navIcon = null;
    if (potentialViews.size() > 0) {
        navIcon = potentialViews.get(0); //navigation icon is ImageButton
    }

    // Clear content description if not previously present
    if (!hadContentDescription)
        toolbar.setNavigationContentDescription(previousContentDescription);

    return navIcon;
}
0