を断片化するために変換し、私はそれは私が断片で働く私の最初の時間です。このクラスは
パブリッククラス接続は{
EditText editText;
private static final String SEND_DATA_URL = "jjj";
Spinner spinner;
String I,Ename,Ecity;
String DEF="NA";
TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.connection);
textView=(TextView)findViewById(R.id.textView100);
spinner=(Spinner)findViewById(R.id.spinner8);
ArrayAdapter adapter = ArrayAdapter.createFromResource(this, R.array.connect, android.R.layout.simple_spinner_item);
spinner.setAdapter(adapter);
editText=(EditText)findViewById(R.id.editText22);
////////////////////////
}
public void send(View view) {
CheckInternetConnection cic = new CheckInternetConnection(getApplicationContext());
Boolean Ch = cic.isConnectingToInternet();
if (!Ch){
Toast.makeText(CONNECTION.this, "no conncection ", Toast.LENGTH_SHORT).show();
}
}
private void openProfile() {
Intent intent = new Intent(CONNECTION.this, CONNECTION.class);
startActivity(intent);
}
}
}}`
AppCompatActivity 拡張し、これは私のコードであるフラグメント にこのコードを変換する方法
私はFragment
は別のクラスになっていることを確認し、他のクラスの
https://github.com/OmniDebt/OmniDebt-Android/wiki/Convert-Activity-to-Fragment –
[アクティビティをフラグメントアンドロイドに変換する方法](http:// stackoverflow)の例があります。 com/questions/22171670/how-to-convert-activities-fragments-android) –