0

フラグメント アクティビティのデータを別のクラスに渡したい。しかし、「The constructor Intent(new View.OnClickListener(){}, Class) is undefined」というエラーになります。

このコードで

'Intent intent = new Intent(this, WebSocket_Connector.class);'

コードは次のとおりです。「id」文字列値を渡すにはどうすればよいですか?

public class Myoffers_Fragment extends Fragment {

    private final WebSocketConnection mConnection = new WebSocketConnection();

    public static Fragment newInstance(Myoffers context, int pos, float scale)
    {
        Bundle b = new Bundle();
        b.putInt("pos", pos);
        b.putFloat("scale", scale);
        return Fragment.instantiate(context, Myoffers_Fragment.class.getName(), b);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        if (container == null) {
            return null;
        }

        LinearLayout l = (LinearLayout) inflater.inflate(R.layout.mf, container, false);

        int pos = this.getArguments().getInt("pos");
        TextView tv = (TextView) l.findViewById(R.id.text);
        tv.setText("Product " + pos);



        ImageButton product_photo = (ImageButton) l.findViewById(R.id.myoffer_image);


        if (pos == 0) {
            product_photo.setImageResource(R.drawable.myoffers_0);
            product_photo.setOnClickListener(new ImageButton.OnClickListener(){
                public void onClick(View v){
                    String id1 = "Product0";
                    Intent intent = new Intent(this, WebSocket_Connector.class);
                    intent.putExtra("KeyToAccessData", id1);
                    startActivity(intent);
                    Log.d(TAG, "Current product is : " + id1);
                    Log.d(TAG, id1 + "is sent to server!");
                }
            });
        }
4

2 に答える 2

3

Intent コンストラクターの 1 つは、パラメーター aContext.classオブジェクトを受け取ります。したがってthis、有効なコンテキストまたはアクティビティでなければなりません。ドキュメントから:

パラメーター

  1. packageContext このクラスを実装するアプリケーション パッケージのコンテキスト。
  2. cls インテントに使用されるコンポーネント クラス。

変化する

new Intent(this, WebSocket_Connector.class); 

new Intent(getActivity(), WebSocket_Connector.class);
于 2013-06-19T12:40:26.417 に答える