錄影+照相機+fileprovider+儲存sd卡
"android.permission.internet"
/>
<
!--讀寫記憶體--
>
"android.permission.read_external_storage"
/>
"android.permission.write_external_storage"
/>
<
!--打**許可權--
>
"android.permission.call_phone"
/>
<
!--照相機許可權--
>
"android.permission.camera"
/>
private
void
openchrome()
private
void
call()
private
void
jieping()
catch
(filenotfoundexception e)
}
private
void
opencamera()
private
void
openvideo()
@override
protected
void
onactivityresult
(int requestcode,
int resultcode,
@nullable intent data)})
;}else
if(requestcode==
110&& resultcode== activity.result_ok)
}
清單檔案註冊:
<
!--name :fileprovider全類名
exported:表示該 fileprovider 是否需要公開出去
granuripermissions:是否允許授權檔案的臨時訪問許可權--
>
android:authorities=
"yu"
android:name=
"androidx.core.content.fileprovider"
android:exported=
"false"
android:granturipermissions=
"true"
>
<
!--操作檔案的路徑 resource xml檔案定義路徑 --
>
android:name=
"android.support.file_provider_paths"
android:resource=
"@xml/xml"
>
<
/meta-data>
<
/provider>
檔案路徑:
!--external-path 代表sd卡根路徑,path代表根路徑下的子資料夾 --
>
name=
"mypath"
path=
"dcim"
>
<
/external-path>
<
/paths>
照相機 打電話 簡單使用
截圖記得新增讀寫記憶體許可權 public void screenshot catch filenotfoundexception e 錄影機使用public void video uriandroid name fileprovider的全限定類名 android exported 是否對外開放 ...
瀏覽器長截圖
利用chrome瀏覽的開發者工具,完美實現網頁全屏截圖,不需要安裝任何外掛程式,大家快來試試吧。ctrl shift i f12 ctrl shift p 輸入 screen 選擇不用的方式擷取 整個網頁 capture full size screenshot 節點網頁 capture node ...
IE瀏覽器整頁截圖程式
最近專案中涉及到瀏覽器整頁截圖的功能,有點複雜,研究了一天,終於在ie瀏覽器下實現,至於其他瀏覽器,以後再研究。所謂整頁截圖,就是說把整個頁面全部截進去,包括通過滾動才能看到的部分。方法是好的,悲催的是,沒有乙個 是能正常執行的,相信很多人都有同感!沒辦法,自己動手,豐衣足食。我需要用.net來實現...