// 版本低于Android 6.0,直接顯示懸浮窗
}
}
6.0版本的android可以在按鍵點(diǎn)擊啟動(dòng)服務(wù)時(shí)加入判斷,給程序一個(gè)手動(dòng)設(shè)置權(quán)限,就可以顯示出來(lái)
}
}
6.0版本的android可以在按鍵點(diǎn)擊啟動(dòng)服務(wù)時(shí)加入判斷,給程序一個(gè)手動(dòng)設(shè)置權(quán)限,就可以顯示出來(lái)
2016-12-30
} else {
// 跳轉(zhuǎn)到相關(guān)的設(shè)置權(quán)限設(shè)置頁(yè)面
Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
} else {
// 跳轉(zhuǎn)到相關(guān)的設(shè)置權(quán)限設(shè)置頁(yè)面
Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
} else {
2016-12-30
public void startService(View v) {
//判斷程序sdk版本
if (Build.VERSION.SDK_INT >= 23) {
if (Settings.canDrawOverlays(this)) {
//如果賦權(quán)直接如行如下程序
Intent intent = new Intent(this, MyFloatService.class);
startService(intent);
//判斷程序sdk版本
if (Build.VERSION.SDK_INT >= 23) {
if (Settings.canDrawOverlays(this)) {
//如果賦權(quán)直接如行如下程序
Intent intent = new Intent(this, MyFloatService.class);
startService(intent);
2016-12-30
那個(gè)initPaint方法空指針看的頭都大了,,看了看了評(píng)論才反應(yīng)過(guò)來(lái)。。。
2016-12-14
開(kāi)始跟著老師敲了一遍,后面自己又再敲了一次,才發(fā)現(xiàn)了很多問(wèn)題一開(kāi)始沒(méi)有搞清楚,https://github.com/kiritozzl/FloatCircleView360/tree/master這是項(xiàng)目代碼,該注意的地方都做了注釋,希望能給一起學(xué)習(xí)的同學(xué)一點(diǎn)幫助~
2016-11-26
老師講的還是很不錯(cuò)的,包括一些新的知識(shí)點(diǎn)的介紹什么的.挺不錯(cuò)的,聽(tīng)完之后,成長(zhǎng)不少.
2016-11-16