導航:首頁 > 源碼編譯 > 源碼ck

源碼ck

發布時間:2023-09-02 23:51:09

『壹』 誰有谷歌拼音輸入法源碼,急求!!!!

最近剛好在做這個,搜到這個問題了,看起來是多年以前的問題,不過還是在這里稍微回答一下:

軟鍵盤上的鍵的定義是在輸入法源碼的skb_template1.xml中,所以首先需要在這個文件中加入「隱藏軟鍵盤鍵」的定義:

<keyid="7"start_pos_x="65.304%p"start_pos_y="75%p"
width="14.696%p"height="20%p"label="."key_type="0"
icon="@drawable/period_icon"icon_popup="@drawable/period_popup_icon"/>

照貓畫虎,icon改成對應的圖標就好了。

然後,具體的鍵盤是由源碼目錄:res/xml/目錄下skb開頭的幾個xml文件決定的,我稱之為鍵盤布局文件。

例如skb_qwerty.xml就是在英文模式下軟鍵盤的布局,稍微研究就能看出來。所以在這里或者新建布局文件,或者修改,把上面加的那個鍵加上去,後面就是代碼裡面處理自定義code的問題了。

PS 其實這種問題,直接搜「輸入法 自定義按鍵」 就好了,比在這提問效率高多了……

『貳』 有一些用易語言寫的軟體中(內含ck,自動助力)是什麼意思

你說的應該是變數,名字都是自己取的,只有看了源碼才能猜出。ck通常我們便是cookies,你看的就是post類源碼。

『叄』 100分 求js寫的自動登陸帳號密碼保存功能~源碼

/**
* 操作Cookie 添加
* @param name
* @param value
* @return
*/
function SetCookie(name,value,days)//兩個參數,一個是cookie的名子,一個是值
{
var Days = 30;
if(typeof(days)=="undefined"||isNaN(days))
Days=parseInt(days.toString());
//此 cookie 將被保存 30 天 -1為瀏覽器關閉
if(Days!=-1){
var exp = new Date(); //new Date("December 31, 9998");
exp.setTime(exp.getTime() + Days*24*60*60*1000);
document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
}else{
document.cookie = name + "="+ escape (value) + ";expires=-1";
}
}

/**
* 操作Cookie 提取 後台必須是escape編碼
* @param name
* @return
*/
function getCookie(name)//取cookies函數
{
var arr = document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
if(arr != null) return unescape(arr[2]); return null;
}
/**
* 操作Cookie 刪除
* @param name
* @return
*/
function delCookie(name)//刪除cookie
{
var exp = new Date();
exp.setTime(exp.getTime() - (86400 * 1000 * 1));
var cval=getCookie(name);
if(cval!=null)
document.cookie = name + "="+ escape (cval) + ";expires="+exp.toGMTString();
}

/**
* 根據ID獲取對象
* @param objName
* @return
*/
function GetObj(objName){
if(typeof(objName)=="undefined")
return null;
if(document.getElementById)
return eval('document.getElementById("'+objName+'")');
else
return eval('document.all.'+objName);

}
/**
* 給String 添加trim方法
*/
String.prototype.trim=function(){
return this.replace(/(^\s*)|(\s*$)/g, "");
}
/**
* 給String添加isNullOrempty的方法
*/
String.prototype.isnullorempty=function(){
if(this==null||typeof(this)=="undefined"||this.trim()=="")
return true;
return false;

}

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>login.html</title>
<script type="text/javascript" src="jsTool.js"></script>
<script type="text/javascript">
var cookieName_username="LOGIN_USER_NAME_TEST";
var cookieName_password="LOGIN_PASSWORD_TEST";
var cookieName_autologin="LOGIN_AUTO_TEST";

//得到Cookie信息
function getUserInfoByCookie(){
var uname=getCookie(cookieName_username);
if(uname!=null&&!uname.toString().isnullorempty()){
GetObj('ttuserName').value=uname;
GetObj('ck_saveuser').checked=true;
}

var upass=getCookie(cookieName_password)
if(upass!=null&&!upass.toString().isnullorempty()){
GetObj('ttpassword').value=upass;
GetObj('ck_savepass').checked=true;
}

var autologin=getCookie(cookieName_autologin)
if(autologin!=null&&!autologin.toString().isnullorempty())
if(autologin.toString().trim()=="true"){
GetObj('ck_autologin').checked=true;
login();//登錄
}
}
/**
*登錄(保存信息)
*/
function login(){
var tusername=GetObj('ttuserName');
if(tusername.value.trim().isnullorempty()){
alert('您尚未輸入用戶名!請輸入!');
tpassword.focus();
return;
}
var tpassword=GetObj('ttpassword');
if(tpassword.value.trim().isnullorempty()){
alert('您尚未輸入密碼!請輸入!');
tpassword.focus();
return;
}
delCookie(cookieName_username);//刪除用戶名Cookie
var tsaveuser=GetObj('ck_saveuser');
if(tsaveuser.checked)
SetCookie(cookieName_username,tusername.value.trim(),7);//保存到Cookie中 保存7天
delCookie(cookieName_password);//刪除密碼
var tsavepass=GetObj('ck_savepass');
if(tsavepass.checked)
SetCookie(cookieName_password,tpassword.value.trim(),7);
var autologin=GetObj('ck_autologin');
SetCookie(cookieName_autologin,autologin.checked,7);
alert('登錄成功!');

}
</script>
</head>
<body onload="getUserInfoByCookie()">
用戶名:<input type="text" value="" name="ttuserName" id="ttuserName" maxlength="16"/>
密碼:<input type="password" value="" name="ttpassword" id="ttpassword" maxlength="16"/>
<input type="checkbox" name="ck_saveuser" id="ck_saveuser"/>保存用戶名
<input type="checkbox" name="ck_savepass" id="ck_savepass"/>保存密碼
<input type="checkbox" name="ck_autologin" id="ck_autologin"/>自動登錄
<input type="button" value="登錄(保存)" onclick="login()"/>
</body>
</html>
能不能審批呀

『肆』 求任何網路游戲源碼

魔獸世界的

閱讀全文

與源碼ck相關的資料

熱點內容
js如何運行時編譯 瀏覽:915
引力app在哪裡下載 瀏覽:607
編寫app如何得到錢 瀏覽:800
吉利汽車軟體放哪個文件夾安裝 瀏覽:223
多文件編譯c 瀏覽:541
頭頂加密後為什麼反而更稀疏 瀏覽:793
離心機壓縮機揚程高 瀏覽:658
xshell連接linux命令 瀏覽:5
把多個文件夾的內容合並在一起 瀏覽:483
基於單片機的澆花系統設計ppt 瀏覽:685
卷積碼編解碼及糾錯性能驗證實驗 瀏覽:354
請在刪除驅動器之前暫停加密什麼意思 瀏覽:787
光催化pdf 瀏覽:98
java字元串包含某字元 瀏覽:528
ssm身份認證源碼 瀏覽:466
預排序遍歷樹演算法 瀏覽:671
加密裝置如何打開ping功能 瀏覽:478
python下載372 瀏覽:902
u盤子文件夾隱藏 瀏覽:296
本地誤刪svn文件夾 瀏覽:687