不管什麼語言,瞭解資訊的輸出可謂緊要的事情,如vb的msgbox,js的alert,c#的MessageBox.Show,這個對於調試意義重大。Android的輸出方法有:
一、用Log輸出。共分Log.v,Log.d,Log.i,Log.w,Log.e,和Log4Net差不多了,用顏色區分,在LogCat視窗中查看。
二、用AlertDialog。將快顯視窗,並可以處理返回事件
import android.app.AlertDialog;
import android.content.DialogInterface;
new AlertDialog.Builder(login.this)
.setTitle("這是提示!")
.setMessage("這是提示的內容")
.setPositiveButton("關閉",new DialogInterface.OnClickListener(){public void onClick(DialogInterface di, int ii){}})
.show();
三、在資訊列顯示。用Toast.makeText命令。
Toast.makeText(this,"test info",Toast.LENGTH_SHORT).show();
四、在狀態列顯示。因為涉及到單擊後進入另外一個Activity,所以工作量較多。
假設已經存在一個新的Acivity名為newact,參見
NotificationManager nm = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Notification n = new Notification(R.drawable.icon, "Hello,there!", System.currentTimeMillis());
n.flags = Notification.FLAG_AUTO_CANCEL;
Intent i=new Intent();
i.setClass(add2.this, newact.class);
PendingIntent pi=PendingIntent.getActivity(this, 0, i, 0);
n.setLatestEventInfo(this, "button1", "button1的通知", pi);
nm.notify(R.string.app_name, n);
關於通知的更詳細的設定參見