こんにちは、XML ファイルを Fragments として拡張して ViewPagerIndicator にバインドできましたが、重要な findViewById コードを使用してボタンをコードに参照することはできません。誰かが助けることができるので、これは私のコードです
package com.example.sliding;
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.Button;
public class twoey extends Fragment {
Button lol;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
View v = inflater.inflate(R.layout.two, null);
return v;
lol = (Button) findViewById (R.id.button1);
}
}
しかし、私が何をしようとしても、findViewById単語の小さな赤いうごめく行を取得できません誰かが助けてくれますか?