|
|
|
Android [Service] อยากทราบ วิธี ส่งค่าจาก Activity ไปยัง Class Service ครับ |
|
|
|
|
|
|
|
ได้แล้วครับ
ActivityCode (Android-Java)
Intent i = new Intent(getApplicationContext(), ActivityB.class);
i.putExtra(key, value);
startActivity(i);
ส่วน Service
Code (Android-Java)
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
String value = intent.getExtras().getString(key);
Toast.makeText(this, value, Toast.LENGTH_LONG).show();
}
|
|
|
|
|
Date :
2012-12-25 11:18:21 |
By :
Loki723 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไปครับ
|
|
|
|
|
Date :
2012-12-25 14:50:18 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|