android – 在操作栏的右上角添加一个按钮

前端之家收集整理的这篇文章主要介绍了android – 在操作栏的右上角添加一个按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法可以在ActionBar的右上角添加一个按钮,就像默认设置按钮的位置一样?我删除了设置按钮,但我想在其中添加一个自定义按钮.

解决方法

您可以通过编辑/创建菜单xml文件添加按钮:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@+id/action_name"
        android:icon="@drawable/you_resource_here"
        android:title="Text to be seen by user"
        app:showAsAction="always"
        android:orderInCategory="0"/>

</menu>

然后在你的活动中,如果你创建了一个新的文件,你需要编辑onCreateOptionsMenu

@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_main,menu);
    return true;
}

您可以编辑以下方法执行的操作:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button,so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_name) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
原文链接:https://www.f2er.com/android/312036.html

猜你在找的Android相关文章