我试图在单击时从Android Wear中的手表启动一项活动:
Intent myIntent = new Intent(this, com.jorc.android.wearable.watchface.watchface.MainActivity.class);
getApplicationContext().startActivity(myIntent);
但是,我遇到了这个错误。
Error:(564, 39) error: no suitable constructor found for Intent(DigitalWatchFaceService.Engine,Class<MainActivity>)
constructor Intent.Intent(String,Uri) is not applicable
(argument mismatch; DigitalWatchFaceService.Engine cannot be converted to String)
constructor Intent.Intent(Context,Class<?>) is not applicable
(argument mismatch; DigitalWatchFaceService.Engine cannot be converted to Context)
我的问题是:"有没有一种方法可以从表面开始活动"?Watchface使用CanvasWatchFaceservice.Engine扩展了CanvasWatchFaceservice。
使用时缺少一个小部分意图myintent = new Intent(this,... mainActivity.class)mainActivity.class)意图是在另一个类中创建的,这里是一个匿名的内部类Canvas单击侦听器。该代码不会将活动(或上下文)的实例称为预期,而是匿名内部类Canvas Canvas cliplistener的实例。
因此,正确的方法是提供班级的正确上下文。
Intent myIntent = new Intent(DigitalWatchFaceService.this, com.jorc.android.wearable.watchface.watchface.MainActivity.class);
getApplicationContext().startActivity(myIntent)
;