0

私はこれを持っていますArrayList<ToLet> toLet;

ToLet クラスは POJO クラスです。

これをあるアクティビティから別のアクティビティに渡すにはどうすればよいですか? それを行う最良の方法は何ですか?

私は次のリンクを通過しました..

Android であるアクティビティから別のアクティビティにオブジェクトを渡す方法

AndroidでArrayList<Custom_Object>をあるアクティビティから別のアクティビティに渡す方法は?

しかし、私を助けませんでした.So誰かが答えを知っているなら、私に知らせてください

4

2 に答える 2

1

これは、ArrayList tolet を渡すためにも使用できます。ある活動から別の活動へ。

クラスのオブジェクトを作成します:-

ToLet obj = new ToLet();

ArrayList<ToLet> tolet;
int size = tolet.getSize();    
Intent ii = new Intent(your_current_class.this, next_class_where_you_want_to_use);
ii.putExtra("listsize",size);

 startActivity(ii);

次のクラスに移動して使用します:-

Intent intent = getIntent();
String mylistsize = intent.getIntExtra("listsize",default value);

および AndroidMainest.xml ファイルがこのアクティビティを更新します。

<activity android:name="yourcurrentclass" />
<activity android:name="yournextclass" />

それはあなたの質問を解決するはずです。

于 2013-02-15T06:45:04.293 に答える
0

インテント オブジェクトを作成する場合、次の 2 つの方法を利用して、2 つのアクティビティ間でオブジェクトを渡すことができます。

putParceble

putSerializable

以下はputParcebleについて教えてくれます

Android 用のParcelableクラスの記述を注意深く確認してください。ここでは、Hashmap を使用して値を格納し、オブジェクトを別のクラスに渡しています。

また


1 つのクラスを作成しObjectAます。その中で、すべてのセッター メソッドとゲッター メソッドを使用しました。

package com.ParcableExample.org;

import android.os.Parcel;
import android.os.Parcelable;

/**
 * A basic object that can be parcelled to
 * transfer between objects.
 */

public class ObjectA implements Parcelable
{
    private String strValue = null;
    private int intValue = 0;

    /**
     * Standard basic constructor for non-parcel
     * object creation.
     */

    public ObjectA()
    {
    }

    /**
     *
     * Constructor to use when re-constructing object
     * from a parcel.
     *
     * @param in a parcel from which to read this object.
     */

    public ObjectA(Parcel in)
    {
        readFromParcel(in);
    }

    /**
     * Standard getter
     *
     * @return strValue
     */
    public String getStrValue()
    {
        return this.strValue;
    }

    /**
     * Standard setter
     *
     * @param strValue
     */

    public void setStrValue(String strValue)
    {
        this.strValue = strValue;
    }


    /**
     * Standard getter
     *
     * @return intValue
     */
    public Integer getIntValue()
    {
        return this.intValue;
    }

    /**
     * Standard setter
     *
     * @param strValue
     */
    public void setIntValue(Integer intValue)
    {
        this.intValue = intValue;
    }

    @Override
    public int describeContents()
    {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags)
    {
        // We just need to write each field into the
        // parcel. When we read from parcel, they
        // will come back in the same order

        dest.writeString(this.strValue);
        dest.writeInt(this.intValue);
    }

    /**
     *
     * Called from the constructor to create this
     * object from a parcel.
     *
     * @param in parcel from which to re-create object.
     */
    public void readFromParcel(Parcel in)
    {
        // We just need to read back each
        // field in the order that it was
        // written to the parcel

        this.strValue = in.readString();
        this.intValue = in.readInt();
    }

    /**
    *
    * This field is needed for Android to be able to
    * create new objects, individually or as arrays.
    *
    * This also means that you can use use the default
    * constructor to create the object and use another
    * method to hyrdate it as necessary.
    */
    @SuppressWarnings("unchecked")
    public static final Parcelable.Creator CREATOR = new Parcelable.Creator()
    {
        @Override
        public ObjectA createFromParcel(Parcel in)
        {
            return new ObjectA(in);
        }

        @Override
        public Object[] newArray(int size)
        {
            return new ObjectA[size];
        }
    };
}

次に、オブジェクトを別のアクティビティに送信するために使用される 1 つのアクティビティを作成します。

package com.ParcableExample.org;

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

public class ParcableExample extends Activity
{
    private Button btnClick;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        initControls();
    }

    private void initControls()
    {
        btnClick = (Button)findViewById(R.id.btnClick);
        btnClick.setOnClickListener(new OnClickListener()
        {
            @Override
            public void onClick(View arg0)
            {
                ObjectA obj = new ObjectA();
                obj.setIntValue(1);
                obj.setStrValue("Chirag");

                Intent i = new Intent(ParcableExample.this,MyActivity.class);
                i.putExtra("com.package.ObjectA", obj);
                startActivity(i);
            }
        });
    }
}

最後に、オブジェクトを読み取り、そこから値を取得する別のアクティビティを作成します。

package com.ParcableExample.org;

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

public class MyActivity extends Activity
{
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Bundle bundle = getIntent().getExtras();
        ObjectA obj = bundle.getParcelable("com.package.ObjectA");

        Log.i("---------- Id   ",":: "+obj.getIntValue());
        Log.i("---------- Name ",":: "+obj.getStrValue());
    }
}
于 2013-02-15T06:39:18.907 に答える