|
|
|
ผมพึ่งหัดเขียน android ช่วยหา error ให้ผมทีไม่รู้ว่า error ที่ไหนคับ |
|
|
|
|
|
|
|
แต่พอเรา onClick(); ออกก็รันได้ปกติแต่ทำงานไม่ได้คับ
|
ประวัติการแก้ไข 2012-10-16 23:49:00
|
|
|
|
Date :
2012-10-16 23:46:19 |
By :
aonfatman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดู LogCat หรือใช้การ Debug ช่วยคุณได้ครับ
หรือไม่ลองเอา LogCat มาดูครับ
|
|
|
|
|
Date :
2012-10-17 09:08:55 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองกำหนด ปุ่ม ให้ Activity รู้จักก่อน?...
Code (Android-Java)
private Button bt1,bt2,bt3,bt4;
bt1= (Button) findViewById(R.id.btxxx);
|
|
|
|
|
Date :
2012-10-17 14:51:46 |
By :
EvoLutionGT |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างการสร้าง Event Click()
Code (Android-Java)
package com.myapp;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.app.AlertDialog;
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final AlertDialog.Builder adb = new AlertDialog.Builder(this);
final Button btn1 = (Button) findViewById(R.id.button1);
// Perform action on click
btn1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
AlertDialog ad = adb.create();
ad.setMessage("Button 2 Event");
ad.show();
}
});
final Button btn2 = (Button) findViewById(R.id.button2);
// Perform action on click
btn2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
AlertDialog ad = adb.create();
ad.setMessage("Button 2 Event");
ad.show();
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
|
|
|
|
|
Date :
2012-10-17 15:11:54 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|