Android基本用法

2021-06-23 02:27:44 字數 1061 閱讀 6588

1:需改導航欄標題的背景:

setcontentview(r.layout.activity_schoolnotice_content);

final actionbar actionbar = getactionbar();

actionbar.setdisplayhomeasupenabled(true);//給左上角圖示的左邊加上乙個返回的圖示 

actionbar.setbackgrounddrawable(getresources().getdrawable(

r.drawable.ationbar_bg));//設定背景顏色

int titleid = resources.getsystem().getidentifier("action_bar_title",

"id", "android");

textview title = (textview) findviewbyid(titleid);

title.settextcolor(this.getresources().getcolor(

r.color.actionbar_text_color));//設定標題的顏色**

android應用完畢退出殺死自己的應用程序:

//獲取當前程序的id

int pid = android.os.process.mypid();

//殺死自己:

android.os.process.killprocess(pid);

android應用程式殺死其他應用程式的**:

// 殺死其他的應用程式,必須獲取android.permission.kill_background_processes這個許可權

activitymanager am = (activitymanager) getsystemservice(activity_service);

am.killbackgroundprocesses("包的路徑");

Android 服務的基本用法

在專案中定義乙個服務,新建乙個service專案 new service service。生成 如下 myservice繼承自service類,onbind方法也別醒目,這個方法是service中唯一乙個抽象方法,所以必須要在子類中實現 public class myservice extends ...

Android 服務的基本用法

定義服務之後,我們會發現這個服務類是繼承於service類的,需要重寫service類中的一些方法,最常用的3個方法 oncreate 服務建立時呼叫 onstartcommand 服務啟動時呼叫 和ondestroy 服務銷毀時呼叫 這裡我們用按鈕來啟動和停止服務 核心 如下 case r.id....

Android中Tabhost的基本用法

下面是乙個小例項layout介面 xml version 1.0 encoding utf 8 tabhostxmlns android android id android id tabhost android layout width match parent android layout he...