我创建了一个蓝牙按钮。 当我单击该按钮时,它应该开始一个新的活动,而不是应用程序关闭。
我查看了 Logcat ,然后看到了:
W / HwLauncher:时钟getDataFormat的getSystemString失败。
//in Main
bluetooth = (Button) findViewById(R.id.bluetooth);
bluetooth.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getApplicationContext(), "Bluetooth Device Not Available", Toast.LENGTH_LONG).show();
Intent intent = new Intent(getApplicationContext(), bluetooth.class);
startActivity(intent);
}
});