无法解析 Fragment 中的方法 'findViewById(int)'

Cannot resolve method 'findViewById(int)' in Fragment

我正在尝试将按钮实现到片段中,以便使用 soundPool 来通过按钮播放声音。目前 playSound1 从未使用过,我试图实现 onClick 方法,但它现在说它无法解析该方法。我如何 link soundPool 到片段中的按钮?这是 .java 文件

@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        Clubb1 = new SoundPool(10, AudioManager.STREAM_MUSIC, 1);
        clubb1Id = Clubb1.load(getActivity(), R.raw.clubb1, 1);

        // TODO Auto-generated method stub
        return inflater.inflate(R.layout.fragment_one_layout, container, false);

        Button buttonA = (Button) findViewById(R.id.buttonA);

        buttonA.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

            }

            public void playSound1()
            {Clubb1.play(clubb1Id,1,1,1,0,1);}
        });

您的代码中有多个错误。

  1. 你 return 一个有价值的方式来早点,超出你的 return 语句的代码没有被执行

  2. 你正在膨胀视图,但是你所有的内部元素,例如你的按钮都在那个视图中,所以你必须在那个视图中通过 id 找到那个视图。

我更正了:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View root = inflater.inflate(R.layout.fragment_one_layout, container, false);
        Clubb1 = new SoundPool(10, AudioManager.STREAM_MUSIC, 1);
        clubb1Id = Clubb1.load(getActivity(), R.raw.clubb1, 1);

        Button buttonA = (Button) root.findViewById(R.id.buttonA);

        buttonA.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

            }

            public void playSound1()
            {Clubb1.play(clubb1Id,1,1,1,0,1);}
        });

       return root;
}

将您的方法更改为:

  @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        Clubb1 = new SoundPool(10, AudioManager.STREAM_MUSIC, 1);
        clubb1Id = Clubb1.load(getActivity(), R.raw.clubb1, 1);

        View rootView = inflater.inflate(R.layout.fragment_one_layout, container, false);

        Button buttonA = (Button) rootView.findViewById(R.id.buttonA);

        buttonA.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Clubb1.play(clubb1Id, 1, 1, 1, 0, 1);
            }

        });

        return veiw;
    }

你在这里犯了很多错误。所以我不确定我的方法是否对你有足够的帮助)将你的程序结果写到评论中,我们会尝试更多。