gpt4 book ai didi

java - 如何制作返回之前布局的后退按钮?

转载 作者:行者123 更新时间:2023-12-01 14:08:45 26 4
gpt4 key购买 nike

我是 android 新手..我想询问有关使用按钮的 Link 2 布局的问题。我有 2 个 xml 布局,第一个布局可以链接到第二个布局,但第二个布局无法返回到第一个布局。请帮助我。

下面是我的代码...

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_marginTop="120dp"
android:text="Link to page 1" />

</RelativeLayout>

page1.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Page 1 test"
android:textAppearance="?android:attr/textAppearanceLarge" />

<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Back to main page" />

</LinearLayout>

MainActivity.java

package com.example.linktest2;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Button btn1 =(Button)findViewById(R.id.button1);




btn1.setOnClickListener(new Button.OnClickListener() {

@Override
public void onClick(View v) {
Intent myIntent = new Intent();

myIntent.setAction(Intent.ACTION_VIEW);

myIntent.setData(android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI);
setContentView(R.layout.page1);

}
});

}}

page1.java

package com.example.linktest2;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class page1 extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.page1);

Button btn1 =(Button)findViewById(R.id.button2);




btn1.setOnClickListener(new Button.OnClickListener() {

@Override
public void onClick(View v) {
Intent myIntent = new Intent();

myIntent.setAction(Intent.ACTION_VIEW);

myIntent.setData(android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI);
setContentView(R.layout.activity_main);

}
});

}}

最佳答案

你做错了。

要从 MainActivity 转到 page1(按照惯例,应该是 Page1),您应该启动一个新的 Activity(而不是更改当前 Activity 的内容 View )。然后,要从 Page1 返回到 MainActivity,您可以通过编程方式 finish() 该 Activity,或者用户可以触摸“返回”。

关于java - 如何制作返回之前布局的后退按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18697359/

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