如何修复“将getDataFormat锁定为getSystemString失败”

时间:2019-07-17 13:28:31

标签: android android-intent android-activity logcat

我创建了一个蓝牙按钮。 当我单击该按钮时,它应该开始一个新的活动,而不是应用程序关闭。

我查看了 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);
        }

    });

0 个答案:

没有答案