|
|
|
Android - ปัญหาการ search ใน listview เนื่องจากการเช็คตำแหน่งข้อมูลโดย position จึงอยากทราบวิธีการเช็ค string |
|
|
|
|
|
|
|
ทำได้แล้วนะคะ
|
|
|
|
|
Date :
2014-06-15 17:39:29 |
By :
atinnnuch |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำยังไงหรอคับ รบกวยช่วยบอกวิธีหน่อยได้ไหมครับ
|
|
|
|
|
Date :
2014-11-09 01:35:07 |
By :
sarasuz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (Android-Java)
String str1 = textContent1.getText().toString();
String str2 = textContent2.getText().toString();
String str3 = textContent3.getText().toString();
Intent newActivity1 = new Intent(scanqrcode.this,showall_main2.class);
//Intent newActivity2 = new Intent(scanqrcode.this,showall_main2.class);
//Intent newActivity3 = new Intent(scanqrcode.this,showall_main2.class);
newActivity1.putExtra("Data1",str1 );
newActivity1.putExtra("Data2",str2);
newActivity1.putExtra("Data3",str3);
startActivity(newActivity1);
//startActivity(newActivity2);
// startActivity(newActivity3);
แล้วก็
Code (Android-Java)
String url = "http://192.168.56.1/php_detail_data.php";
Intent intent= getIntent();
final String code1 = intent.getStringExtra("Data1");
final String code2 = intent.getStringExtra("Data2");
final String code3 = intent.getStringExtra("Data3");
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("Data1", code1));
params.add(new BasicNameValuePair("Data2", code2));
params.add(new BasicNameValuePair("Data3", code3));
ปล เดี่ยวพุงนี้มาเขียนต่อครับ Zzz
|
|
|
|
|
Date :
2014-12-24 05:04:09 |
By :
heloman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำยังไงอ่ะครับ โค้ดผมเหมือนของคุณเลย แต่ทำต่อไม่ถูกแล้วจริงๆ
ขอแนวทางหน่อยครับ
|
|
|
|
|
Date :
2015-03-22 18:06:08 |
By :
SuperBuay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|