Android如何在没有Actionbar和工具栏的情况下制作后退按钮?

时间:2018-04-20 10:27:18

标签: android android-studio

我在res / values / style.xml中创建了一个这样的主题并应用于删除 动作条。

<style name="AppTheme.NoActionbar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">false</item>
    </style>

我制作了一个LinerLayout看起来像一个带有标题和按钮的ActionBar(它将具有后退功能)。

我想上传图片,但我还无法上传。

这是layout.xml的一部分

<LinearLayout
        android:id="@+id/ActionBarProductInfo"
        android:layout_width="match_parent"
        android:layout_height="70dp"
        android:background="@color/colorPrimary"
        android:orientation="horizontal">

            <ImageButton
                android:id="@+id/backToMain"
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:layout_gravity="center"
                android:layout_marginLeft="15dp"
                android:layout_marginStart="15dp"
                android:background="@drawable/image_back_34dp" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="210dp"
                android:layout_marginStart="210dp"
                android:text="Input product information"
                android:textColor="@android:color/white"
                android:textSize="40sp"
                android:textStyle="bold" />

    </LinearLayout>

如何在按钮中设置后退功能(id:backToMain)?

4 个答案:

答案 0 :(得分:1)

我希望这对你有用。

修改您的布局,如下所示。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/ActionBarProductInfo"
android:layout_width="match_parent"
android:layout_height="64dp"
android:background="@color/colorPrimary"
android:orientation="horizontal"
xmlns:android="http://schemas.android.com/apk/res/android">

<ImageButton
    android:id="@+id/backToMain"
    android:layout_width="40dp"
    android:layout_height="40dp"
    android:layout_gravity="center"
    android:layout_marginLeft="15dp"
    android:background="@mipmap/ic_back" />

<TextView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:gravity="center"
    android:text="Input product information"
    android:textColor="@android:color/white"
    android:textSize="20sp"
    android:textStyle="bold" />
 </LinearLayout>

答案 1 :(得分:1)

只需在您的java中绑定您的ImageButton的id,并在该ID上设置clicklistner,就像这样

ImageButton back = (ImageButton)findViewById(R.id.backToMain);
back.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        onBackPressed();
    }
});

答案 2 :(得分:1)

您只需在活动中包含布局,然后绑定后退按钮。

<include layout="@layout/layout" /> 

将其置于活动中

ImageButton back1 = (ImageButton) findViewById(R.id.backToMain);
back1.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        onBackPressed();
    }
});

答案 3 :(得分:0)

首先初始化工具栏

setSupportActionBar(toolbar);
getSupportActionBar().setDefaultDisplayHomeAsUpEnabled(true);

处理点击

@Override
public boolean onOptionsItemSelected(MenuItem menuItem) {
    if (menuItem.getItemId() == android.R.id.home) {
        Timber.d("Home pressed");
    }
    return super.onOptionsItemSelected(menuItem);
}