任意乙個按鈕,或者其他,出發乙個事件,呼叫一下過程即可。
@override
public void onclick(view v) );
//在notificationmanager中建立通知渠道
manager.createnotificationchannel(notificationchannel);
notification notification = new notificationcompat.builder(mainactivity.this, id)
.setcontenttitle("標題")
.setcontenttext("內容 哈哈哈 試試看")
.setwhen(system.currenttimemillis())
.setsmallicon(r.drawable.ic_launcher_foreground) //定義圖示
.setlargeicon(bitmapfactory.decoderesource(getresources(), r.drawable.ic_launcher_background))//定義自己的圖示
.build();
manager.notify(1, notification);
}}
Git簡單生成生成公鑰和私鑰方法
git簡單生成生成公鑰和私鑰方法 git配置 git安裝完之後,需做最後一步配置。開啟git bash,分別執行以下兩句命令 git config global user.name 使用者名稱 git config global user.email 郵箱 ssh配置 1 開啟git bash 2 ...
Android 專案生成arr檔案和使用詳解
jar 只包含了class檔案與清單檔案,不包含資源檔案,如等所有res中的檔案。aar 包含所有資源,class以及res資源檔案全部包含 如果你只是乙個簡單的類庫那麼使用生成的 jar檔案即可 如果你的是乙個ui庫,包含一些自己寫的控制項布局檔案以及字型等資源檔案那麼就只能使用 aar檔案。我使...
Android資料傳遞中json的生成和解析
使用android整合的json包完全可以滿足需要。1.生成json資料 基本map物件 map basemap new hashmap basemap.put string string basemap.put int 2 basemap.put boolean true json陣列 jsona...