无法实现getIntent();片段中的方法

时间:2017-04-14 17:19:01

标签: java android

我尝试在Fragment中实现getIntent();并显示文字,但我得到Cannot resolve method 'getIntent()'

这是Fragment3.java的一部分

public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.fragment_3, container, false);
    TextView textViewDisplayResult = (TextView) getView().findViewById(R.id.text_view_display_result);
    textViewDisplayResult.setText(getIntent().getBooleanExtra("KEY_ANSWER", false)?R.string.Good_answer:R.string.Wrong_answer);

这是用于显示文本的xml TextView

<TextView
    android:id="@+id/text_view_display_result"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"/>

关于此事的MainActivity的一部分

final Intent intent = new Intent(MainActivity.this, Fragment3.class);

    buttonCheckAnswer.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            if (checkAnswers())
                intent.putExtra("Key Answer", true);

            else
                intent.putExtra("Key Answer", false);
            startActivity(intent);
        }
    });

这是整个Fragment3

    package make.appaplication;


import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;


/**
 * A simple {@link Fragment} subclass.
 */
public class Fragment41 extends Fragment {


    public Fragment41() {
        // Required empty public constructor
    }
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_3, container, false);
        TextView textViewDisplayResult = (TextView) getView().findViewById(R.id.text_view_display_result);
        textViewDisplayResult.setText(getActivity().getIntent().getB‌​ooleanExtra("KEY_ANS‌​WER", false)?R.string.Good_answer:R.string.Wrong_answer);

    }


}

2 个答案:

答案 0 :(得分:4)

您可以使用:

getActivity().getIntent();

或者您可以使用参数直接将数据传递给片段:

Bundle args = new Bundle();
args.putBoolean("Key Answer", true);
Fragment f = new YourFragment();
f.setArguments(args);

确保在将片段添加到FragmentManager之前设置参数。

答案 1 :(得分:0)

getIntent()是一个Activity类方法,无法从您的片段直接访问。尝试调用getActivity.getIntent()以首先获取上下文中的活动。