Android - 如何将ID添加到工具栏后退按钮?

时间:2017-08-29 12:59:47

标签: android android-toolbar

出于自动测试目的,我需要将 ID 添加到工具栏的 BACK / MENU 按钮视图中。

我尝试使用getChildAtsetId添加ID,但在检查视图层次结构时仍未设置ID。 android.R.id.home菜单ID在我的情况下不起作用。当我使用布局检查器检查视图层次结构时,我需要为视图设置的ID。只有这样,id才能用于自动UI测试。

你能建议一种方法吗?

3 个答案:

答案 0 :(得分:3)

工具栏的 BACK / MENU 按钮已标识为android.R.id.home 你可以使用这个id

在代码

下面对该用法执行操作
 @Override
public boolean onOptionsItemSelected(MenuItem item) {

    if (item.getItemId() == android.R.id.home) {
        Toast.makeText(context, "Backarrow pressed", Toast.LENGTH_SHORT).show();
        return true;
    }

    return false;
}

答案 1 :(得分:0)

在活动底部添加此代码

@Override
    public void onBackPressed() {
        super.onBackPressed();
    }

@Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_menuname, menu);
        return true;
    }
@Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Ward/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
            switch (item.getItemId()) {
           case android.R.id.home:
                    finish();
                    return true;
            }
       }

答案 2 :(得分:0)

我可以通过搜索AppCompatImageButton并设置第一个找到的视图的ID来将id添加到工具栏后退按钮。在设置actionBar后执行此操作非常重要。

private void addIdToBackButton() {
     for (int i = 0; i < toolbar.getChildCount(); i++) {
        View child = toolbar.getChildAt(i);
        if (child instanceof AppCompatImageButton) {
            child.setId(R.id.toolbar_back_button);
            return;
        }
     }
 }

private void setUpActionBar() {
    setSupportActionBar(toolbar);

    ActionBar actionBar = getSupportActionBar();
    actionBar.setTitle("Title");
    actionBar.setDisplayHomeAsUpEnabled(true);
    toolbar.setNavigationOnClickListener(__ -> onBackPressed());

    addIdToBackButton();
}