我有問題。我的android穿戴模擬器不顯示通知。 這裏是我的移動代碼:Android穿不顯示通知
private void notifyToWear() {
NotificationCompat.WearableExtender wearableExtender = new NotificationCompat.WearableExtender()
.setHintShowBackgroundOnly(true);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Request text")
.setContentText("Speak something then your phone will search it.")
.extend(wearableExtender);
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
notificationManager.notify(0, notificationBuilder.build());
}
我把它當MainActivity點擊按鈕。在我的手機顯示通知,但在Android穿模擬器不顯示。 筆記: +我已連接Android手機& android wear emualtor。我使用Android Wear App中的卡片示例進行了測試。它正在工作。
謝謝。
- 更新 - 代碼執行單擊按鈕:
(findViewById(R.id.btn_request_text)).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(MyActivity.this, "Call request", Toast.LENGTH_SHORT).show();
notifyToWear();
}
});
當我點擊按鈕Toast是表演。
---更新--- 我也運行ElizaChat &食譜Assist in Wear Sample。 但它不工作。
你可以發佈按鈕的代碼?看看你如何調用這段代碼? – Elior 2014-09-03 10:39:48
我更新了問題。你能幫我嗎 ? – quangson91 2014-09-03 10:44:12
看到我的答案.. – Elior 2014-09-03 11:42:32