編輯:Android開發實例
Android狀態欄提醒
在Android中提醒功能也可以用AlertDialog,但是我們要慎重的使用,因為當使用AlertDialog的時候,用戶正在進行的操作將會被打斷,因為當前焦點被AlertDialog得到。我們可以想像一下,當用戶打游戲正爽的時候,這時候來了一條短信。如果這時候短信用AlertDialog提醒,用戶必須先去處理這條提醒,從而才能繼續游戲。用戶可能會活活被氣死。而使用Notification就不會帶來這些麻煩事,用戶完全可以打完游戲再去看這條短信。所以在開發中應根據實際需求,選擇合適的控件。
步驟:
一、添加布局對象
代碼如下:
<Button
android:id="@+id/showButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="showNotification" />
<Button
android:id="@+id/cancelButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="cancelNotification" />
二、修改MianActivity繼承處Activity並實現接口OnClickListener
代碼如下:
public class MainActivity extends Activity implements OnClickListener {
private Context mContext = this;
private Button showbtn, calclebtn;
private Notification noti;
private NotificationManager notiManger;
private static int NOTIFICATION_ID = 0x0001;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setUpViews();
}
private void setUpViews() {
showbtn = (Button) findViewById(R.id.showButton);
calclebtn = (Button) findViewById(R.id.cancelButton);
noti = new Notification(R.drawable.ic_launcher, "this is a notification", System.currentTimeMillis());
noti.defaults = Notification.DEFAULT_SOUND;// 使用默認的提示聲音
noti.defaults |= Notification.DEFAULT_VIBRATE;// 添加震動
notiManger = (NotificationManager) this.getSystemService(mContext.NOTIFICATION_SERVICE);//獲取NofificationManger對象
showbtn.setOnClickListener(this);//讓Activity實現接口OnClickListener可以簡單的通過此兩行代碼添加按鈕點擊響應事件
calclebtn.setOnClickListener(this);
}
// 按鈕點擊事件響應
@Override
public void onClick(View v) {
if (v == showbtn) {
Intent intent = new Intent(this.getApplicationContext(),this.getClass());
// 設置Intent.FLAG_ACTIVITY_NEW_TASK
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intent, 0);
// noti.setLatestEventInfo(context, contentTitle, contentText, contentIntent)設置(上下文,標題,內容,PendingInteng)
noti.setLatestEventInfo(this, "10086", "你從此以後免除所有話費", contentIntent);
// 發送通知(消息ID,通知對象)
notiManger.notify(NOTIFICATION_ID, noti);
} else if (v == calclebtn) {
// 取消通知(id)
notiManger.cancel(NOTIFICATION_ID);
}
}
}
Android應用程序可以在許多不同地區的許多設備上運行。為了使應用程序更具交互性,應用程序應該處理以適合應用程序將要使用的語言環境方面的文字,數字,文件等。在本章中,我
登錄應用程序的屏幕,詢問憑據登錄到一些特定的應用。可能需要登錄到Facebook,微博等本章介紹了,如何創建一個登錄界面,以及如何管理安全問題和錯誤嘗試。首先,必須定義兩
JSON代表JavaScript對象符號。它是一個獨立的數據交換格式,是XML的最佳替代品。本章介紹了如何解析JSON文件,並從中提取所需的信息。Android提供了四個
此方法適用於所有母控件無法獲取焦點的情況 開發中很常見的一個問題,項目中的listview不僅僅是簡單的文字,常常需要自己定義listview,自己的Adapte