現在自分が使用中に発生した不具合です
・SPモード画面で画面右下及び下に白い線が表示される
(キャプチャを撮ってもなぜか表示されていませんw)
・タイマー使用時にスリープに入らない!
・結構熱くなるww(40℃程度)
順次追加予定
スポンサードリンク
日 | 月 | 火 | 水 | 木 | 金 | 土 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 |
package blog.test; import android.app.Activity; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Intent; import android.os.Bundle; public class MainActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // PendingIntentの生成 Intent intent = new Intent(Intent.ACTION_VIEW); PendingIntent pendIntent = PendingIntent.getActivity(this, 0, intent, 0); // NotificationManagerのインスタンスを取得 NotificationManager notifManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); // Notificationのインスタンスの生成 Notification notif = new Notification(); //通知の際のアイコン設定 notif.icon = R.drawable.ic_launcher; notif.tickerText = "通知です"; notif.setLatestEventInfo(getApplicationContext(), "タイトル:アプリ名", "メッセージ:これは通知情報です", pendIntent); // Notificationの通知 notifManager.notify(R.string.app_name, notif); } }