最近在用Java寫Android的程式,使用Eclipse
不過我是新手~碰到了問題~~
private void showAlertDialog(){
new AlertDialog.Builder(this)
.setMessage("123")
.setPositiveButton("確定", null)
.show();
}
請問要如何在文字前面放上圖示呢?(就是像Android系統電量剩下15%以下時會出現的那個提醒那個樣子..)
聽說是.setIcon,但是一直不成功..
另外問一下,要如何調用resource裡面的圖片!?
http://developer.android.com/guide/topics/graphics/2d-graphics.html
看一下就應該知道怎麼把資源加到project,然後怎樣使用。setIcon也可以這樣使用。