Android開發一些小功能

2021-06-18 05:33:54 字數 1192 閱讀 9993

今天分享一下在android開發一些小功能的實現,遇到的一些問題與解決方法,希望能夠對大家有所幫助。

toast(訊息提示框):

toast.maketext(mainactivity.

this

, "位置改變了::::::::::::", 

3000

).show(); 

intent跳**(androidmanifest.xml 中記得註冊 activity)

intent intent=

newintent(success.

this

,luru.

class

); startactivity(intent); 

intent隱式啟動:

intent intent=

newintent(intent.action_view,uri.parse(urlstring)); 

startactivity(intent); 

urlstring可以是"www.baidu.com"

;

date now=

newdate(); 

//自定義格式

******dateformat d1=new

******dateformat("yyyy-mm-dd hh:mm:ss"); 

string time=d1.format(now); 

相機的呼叫:

string filepath = 

"/mnt/sdcard/dcim/camera/"

+ phototime + 

".png"

; final

file file = 

newfile(filepath); 

final

uri imageuri = uri.fromfile(file); 

intent intent = new

intent(mediastore.action_image_capture); 

intent.putextra(android.provider.mediastore.extra_output, imageuri); 

startactivityforresult(intent, 110

);

VS 一些小功能

1.開啟乙個json檔案,複製 2.開啟乙個.cs檔案,將json貼上為類 1.檢視 其他視窗 c 互動視窗 2.開啟了乙個視窗,就可以寫一些簡單的測試 了 16.8版本之後這裡如果亂碼,可以設定系統區域設定解決 2.0支援大小寫,1.工具 選項 除錯 勾選 1.工具 選項 專案和解決方案 不勾選 ...

python實現的一些小功能

放大視窗以便顯示所有控制項 pyautogui.moveto 536,275,duration 0.25 pyautogui.dragrel 100,0,duration 0.25 固定視窗位置 hwnd maindlg.handle win32gui.setwindowpos hwnd,win32...

使用JavaScript實現一些小功能

1 編寫乙個函式,要求輸入年月日時分秒,輸出該年月日時分秒的下一秒。如輸入2004年12月31日23時59分59秒,則輸出2005年1月1日0時0分0秒 function nextsecond 2 返回 a,b 和 c,d 的交集 function collection a,b,c,d 4 計算在遠...