gpt4 book ai didi

android - 如何向操作栏/工具栏添加后退按钮

转载 作者:太空宇宙 更新时间:2023-11-03 11:47:12 27 4
gpt4 key购买 nike

我写了一段代码作为应用程序的一部分,我想在操作栏/工具栏上实现一个后退按钮,这样当按下按钮时,上一页(紧接当前页面之前的页面/fragment )页面/fragment )将被显示。

这是 ToolBar、DrawerLayout、NavigationView 和 getSupportActionBar() 的代码:

final DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
final NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);

android.support.v7.widget.Toolbar toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
toolbar.setVisibility(View.VISIBLE);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setLogo(R.mipmap.ic_launcher);
getSupportActionBar().setDisplayUseLogoEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true);

我无法使用 ActionBar。出于某种原因(我不知道为什么),我的 Android 工作室/程序不允许我使用 ActionBar。所以我将其替换为 set/getSupportActionBar()。

与此相关的函数是:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu_settings, 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();

switch (id) {
case android.R.id.home:
onBackPressed();
return true;
default:
return super.onOptionsItemSelected(item);
}
}

@Override
public void onBackPressed() {

DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}

我的 activity_main.xml 文件是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:id="@+id/activity_main"
android:orientation="vertical"
tools:openDrawer="start"
tools:context="com.example.albin.settings_menu.SettingsActivity">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff">

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:title="Settings"/>

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:id="@+id/frame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar">

</FrameLayout>

<android.support.design.widget.NavigationView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:layout_marginTop="-24dp"
app:menu="@menu/options_menu" />


</android.support.v4.widget.DrawerLayout>

</RelativeLayout>
</LinearLayout>

问题是我不知道哪些是有用的代码,哪些是无用的代码以及如何混合/加入/(添加额外的代码)这些(代码,方法,变量/对象, fragment ,xml布局) 以获得所需的结果,即在操作栏/工具栏上应用后退按钮。

上面的大部分代码都是针对向上按钮而不是后退按钮实现的。我在几个地方读到向上和向后按钮不一样。

我尝试了 Internet 和本网站上的几个链接,但没有一个是我需要的。

希望有人能给我一个明确的答案...

最佳答案

您可以在 ToolBar 中包含后退图标:

初始化工具栏:

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
  • 您可以使用 drawable 图标作为后退按钮。

    toolbar.setNavigationIcon(R.drawable.your_drawable_icon);

    toolbar.setNavigationOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
    // what do you want here
    }
    });
  • 如果您不想使用drawable 图标,那么:

    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setDisplayShowHomeEnabled(true);

    toolbar.setNavigationOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
    // what do you want here
    }
    });

关于android - 如何向操作栏/工具栏添加后退按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42849082/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com