将按钮上的文本输出到下一个活动

时间:2014-01-02 12:53:04

标签: javascript android jquery button android-activity

我的应用程序在第一个活动中有许多按钮。已完成按钮配置为在单击时打开第二个活动。我希望能够在单击时查看第二个活动中其他按钮上的文本。我之前在第一个活动中的所有按钮上设置了onclicklistener,然后在第二个活动中调用了onclick协议,如下所示:

public void onClick(View v) {
    ((Button) v).getText();
}

但它不起作用。我只是想知道我是否通过在第二个活动中调用onClick协议来做正确的事情,如果不是如何去做。我也试过这段代码:

public void onClick(View v) {
    // 1) Possibly check for instance of first 
    Button b = (Button)v;
    String buttonText = b.getText().toString();
}

感谢您的帮助。

以下是存在所有按钮的第一个活动的代码:

package com.example.coursework1;

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

public class MainActivity extends Activity implements View.OnClickListener {

    Button button7;
    Button button1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button7 = (Button)findViewById(R.id.button7);
        button7.setOnClickListener(this);
        //
        button1 = (Button)findViewById(R.id.button1);
        button1.setOnClickListener(this);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    private void FinishClick()
    {
        startActivity(new Intent("com.example.coursework1"));

    }

    @Override
    public void onClick(View v) {
        switch (v.getId())
        {
            case R.id.button7:
                FinishClick();
                break;
        }
        // TODO Auto-generated method stub

    }

}

这是它的.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/button2"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignTop="@+id/button1"
        android:layout_marginRight="68dp"
        android:text="@string/Panini" />

    <Button
        android:id="@+id/button1"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="41dp"
        android:layout_toRightOf="@+id/textView1"
        android:text="@string/Tea" />

    <Button
        android:id="@+id/button3"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button1"
        android:layout_marginTop="49dp"
        android:layout_toRightOf="@+id/textView1"
        android:text="@string/Sandwich" />

    <Button
        android:id="@+id/button4"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/button3"
        android:layout_alignBottom="@+id/button3"
        android:layout_alignLeft="@+id/button2"
        android:text="@string/Salad" />

    <Button
        android:id="@+id/button5"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button3"
        android:layout_below="@+id/button3"
        android:layout_marginTop="48dp"
        android:text="@string/Water" />

    <Button
        android:id="@+id/button6"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button4"
        android:layout_alignTop="@+id/button5"
        android:text="@string/Juice" />

    <Button
        android:id="@+id/button7"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="25dp"
        android:text="@string/Finish" />

</RelativeLayout>

第二项活动的代码是:

package com.example.coursework1;

import android.app.Activity;
import android.os.Bundle;

public class FinishButton extends Activity{

    @Override
    protected void onCreate(Bundle icicle) 
    {
        super.onCreate(icicle);
        setContentView(R.layout.finish_button);

    }

public void onClick(View v) {
    ((Button) v).getText();
}


}

此时button7在​​点击时打开第二个活动。我还想查看第二个活动中点击的其他按钮的文本。

3 个答案:

答案 0 :(得分:0)

您可以通过意图本身传递这些简单的字符串

Intent newintent=new Intent(getApplicationContext(), NextActivity.class);
            newintent.putExtra("type", 1);
            startActivity(resturatntintent);

on NextActivity

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        ....

        type=getIntent().getExtras().getInt("type", 0);
        ....        
    }

编辑:

 Intent newintent=new Intent(getApplicationContext(), NextActivity.class);
                newintent.putExtra("type", 1);
                startActivity(newintent);

答案 1 :(得分:0)

MainActivity

在MainActiviy中全局声明 HashSet

private HashSet<String> hashSet;

将此添加到您的onCreate

hashSet = new HashSet<String>();

此方法是View.OnClickListener onClick方法

的实现
public void onClick(View v) {
    switch (v.getId()) {
    case R.id.button1:
        hashSet.add("BUTTON1");
        break;
    case R.id.button2:
        hashSet.add("BUTTON2");
        break;
    case R.id.button3:
        hashSet.add("BUTTON3");
        break;
    // Do the same for remaining buttons             
    case R.id.button7:
       Intent intent = new Intent("com.example.coursework1");
       intent.putExtra("BUTTONS_DATA", hashSet);
       startActivity(intent);
    break;
}

在您的FinishButton中检索HashSet,您可以获取点击按钮的数据。通过字符串

Bundle extras = getIntent().getExtras();
    if (extras != null) {
        HashSet<String> hashSet = (HashSet<String>) extras
                .get("BUTTONS_DATA");
                    System.out.println("These buttons are clicked in the FirstActvity"); 
        for (String string : hashSet) {
            System.out.println(string);
        }

    }

答案 2 :(得分:0)

我编写了Android Vapor这是一个小框架,它提供了对常见API的抽象,使这样的任务更容易。所以在你的情况下构建你的意图:

$.Intent(this, FinishButton.class).put("buttonText", buttonText);
// NOTE: 'this' is a context handle, so your current activity in this case

然后在您的FinishButton活动中:

protected void onCreate(Bundle icicle) 
{
   super.onCreate(icicle);
   setContentView(R.layout.finish_button);

   String buttonText = $.Intent(getIntent()).extras().getString("buttonText");

}

同样在VaporBundleVaporIntent中,.put()方法已重载,因此您可以在其上抛出任何支持的类型:)

如果你愿意,可以尝试一下,它都是免费的source is available too