使用onClick in按钮查看视图

时间:2012-06-13 22:01:34

标签: java android android-layout android-intent sdk

刚开始学习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的后退按钮

1 个答案:

答案 0 :(得分:1)

请进一步解释你的问题。你是什​​么意思打开图像或xml文件?你的意思是创建一个位图?你的意思是表明它吗?如果是的话,在哪里?另外,你的意思是后退按钮会返回main.xml? main.xml是一个布局文件,而不是一个活动。

在任何情况下,也许你的意思是你希望按下按钮时全屏打开图像,点击设备的后退按钮返回你创建的活动?

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


要开始新活动,您需要致电:

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

其中“CurrentActivity”是您当前的活动(样本中称为“A2Activity”),“NewActivity”是显示图像的活动。

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