gpt4 book ai didi

java - 在按钮中使用 onClick 来查看

转载 作者:行者123 更新时间:2023-12-01 15:20:19 25 4
gpt4 key购买 nike

今天早上刚开始学习 Android,需要这方面的帮助。我的应用程序中有几个按钮,我希望当用户单击按钮时将显示图像并返回按钮以加载 main.xml 。

代码:

在 main.xml 中

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

<Button
android:layout_marginTop="40dp"
android:layout_width="100dp"
android:layout_height="80dp"
android:id="@+id/b1"
android:text="xyz"
android:background="#ff3375"
android:layout_marginLeft="20dp"
/>

<Button
android:layout_marginTop="40dp"
android:layout_width="100dp"
android:layout_height="80dp"
android:id="@+id/b2"
android:layout_toRightOf="@id/b1"
android:text="abc"
android:background="#ff3375"
android:layout_marginLeft="80dp"
/></RelativeLayout>

在Activity.java中

package com.sam;

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

public class A2Activity extends Activity {
/** Called when the activity is first created. */

Button a,b;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
a= (Button) findViewById(R.id.b1);
b= (Button) findViewById(R.id.b2);
a.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {
// TODO Auto-generated method stub

}
});
b.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {
// TODO Auto-generated method stub

}
});}}

现在,我需要在 onCLick 方法中添加什么来打开图像或 XML 文件以及返回按钮以返回 main.xml

最佳答案

请进一步解释您的问题。打开图像或 xml 文件是什么意思?你的意思是创建一个位图吗?你想展示它吗?如果有,在哪里?另外,后退按钮将返回到 main.xml 是什么意思? main.xml 是一个布局文件,而不是一个 Activity 。

无论如何,也许您的意思是您希望在按下按钮时全屏打开图像,并在单击设备的后退按钮时返回到您创建的 Activity ?

如果是这样,您可以创建一个扩展 Activity 的新类,更新 list 以使其可访问,然后启动它(使用 startActivity)。在新的 Activity 类中,将内容 View 设置为显示图像的 ImageView 或具有显示图像的 imageView 的布局文件。

<小时/>

要开始新 Activity ,您需要调用:

startActivity(new Intent(CurrentActivity.this, NewActivity.class);

其中“CurrentActivity”是您当前所在的 Activity (在示例中称为“A2Activity”),“NewActivity”是显示图像的 Activity 。

如前所述,不要忘记更新 list 。

关于java - 在按钮中使用 onClick 来查看,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11023966/

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