安卓環境變數配置
系統變數
變數名:android_home
變數值:d:\android\android-sdk-windows
path中增加:%android_home%\platform-tools;%android_home%\tools
----返回--------
@override
public boolean onkeydown(int keycode, keyevent event)
return super.onkeydown(keycode, event);
}private void back()
r.string.exit,toast.length_short).show();
exittime = system.currenttimemillis();
} else
return true;
}return super.onkeydown(keycode, event);
}------設定全屏--------------
第一種:
androidmanifest.xml
第二種:
requestwindowfeature(window.feature_no_title);//設定無標題
setcontentview(r.layout.activity_main);
getwindow().setflags(windowmanager.layoutparams.flag_fullscreen,windowmanager.layoutparams.flag_fullscreen);//設定全屏
------設定只能橫屏-------
android:screenorientation="landscape"
startactivity(localintent);
public class weidianying extends activity
}<?xml version="1.0" encoding="utf-8"?>
"android:id="@+id/weidianying"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
------------------開啟html
webview例項.loadurl("file:///android_asset/moreinfo.html");
//設定全屏
wv.getsettings().setusewideviewport(true);
wv.getsettings().setloadwithoverviewmode(true);
------------------android向伺服器傳送url url包含json格式引數
urlencoder.encode(引數值也就是json資料值,"utf-8"); 即可解決。
----------------monkey 自動測試命令
adb shell monkey -p com.package -v 100
---------------匯出logcat到文字檔案
adb logcat -d > d:/logcat.txt
android 呼叫已安裝市場,進行軟體評分的功能實現
uri uri = uri.parse("market://details?id="+getpackagename());
intent intent = new intent(intent.action_view,uri);
intent.addflags(intent.flag_activity_new_task);
startactivity(intent);
通過以上**就能夠列出您手機上所安裝的所有應用市場(如:google player、豌豆莢、360手機助手等),讓您選擇。
------------------------------------------
呼叫分享的**(手機上的可以走分享的應用)
intent sendintent = new intent();
sendintent.setaction(intent.action_send);
sendintent.settype("text/*");
sendintent.putextra(intent.extra_text, "分享的內容");
startactivity(sendintent);
Task async await隨筆記錄
using system using system.collections.generic using system.linq using system.text using system.threading using system.threading.tasks namespace taskco...
openssh 隨筆記錄
openssh for windows 1.安裝openssh for windows 2.建立配置檔案c 使用者 使用者名稱.ssh config 3.配置檔案中寫如下內容防止ssh客戶端掉線 其中數字99表示99秒,數字3表示3次 serveraliveinterval 99 serverali...
個人隨筆記錄
記錄點點滴滴 celery 4.4.7 komd.asyn python關鍵子問題 rabbitmqctl set permissions p myvhost myuser redis 2.python manage.py celery worker c 6 l debug python manag...