-2
我是Android新手,我有這個源代碼的問題。 當我想運行應用程序應用程序關閉。問題在哪裏可以幫助我?爲什麼運行後應用程序不工作
下面是一個代碼:
public class PhoneDiagnosticsActivity extends Activity {
TelephonyManager tm = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btnStart = (Button)findViewById(R.id.btnStart);
btnStart.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
BluetoothConnection bc = new BluetoothConnection();
bc.createConnection();
}
});
}
public String writeXMLString(){
code with XML writer
}
謝謝
發佈你的logcat ... –