Note 2生活日記與刷機分享(第12頁第1篇)


danieliememe wrote:
- 可以適用在4.1.2 for S3/Note II上
-> 事實上,如果你有仔細算過,被誤拉的icon,其原始的順位就是與你預計要置放的SideBar位置是一樣的
-> 例如,被誤拉的icon在從上方數來第五的位置,就是你預計要置放你打算要拉過來的icon之SideBar位置
...這樣就是上述設定值錯誤所導致的(恕刪)


謝謝 D 大的說明....

ppelutw wrote:
所以請問如果是刷OM...(恕刪)


我是刷OMEGA8的ROM 刷美化包8 沒問題喔
要刷之前要先刪掉\SYSTME\APP\ OmegaTogglesControl
跟 MWControl 這2個
在刷T24主體包 才會出現中文的 調整控制

謝謝E大 我原本有刪掉 還是有停止問題
後來我刪掉\SYSTME\APP\ MWControl
在重開機就正常了 謝謝E大喔^^
可比
jifeng 大大 及 M 大 指正 N2_T24 中文的部份

我做個直刷包

TogglesControl.apk_V1.zip ( 562 KB)

https://docs.google.com/open?id=0B80kk8AOqhiaQXY4U0IzQ19qak0


1.音響模式要改成響鈴模式.

2 智能保持要改成智慧休眠.

=========================================

鎖屏按 HOME 鍵, 開啟手電筒


========================================




李永興 wrote:
感謝E大 我已經置換...(恕刪)


其實不是ek大那樣說的一定FC,你把檔案抄到system下已可修改權限,然後才抄到對應位置去,我這樣從來沒FC過,接著才施施然的重啟就好了
分享文字內容修正後的lktog-res.apk

中文敘述修正,以台灣ROM原廠敘述為主

https://www.dropbox.com/s/rah6jg3h7yhncj5/lktog-res.apk

主體包是用LM大的版本

重啟的部分為了配合圖示的位置

所以改成英文敘述

另外給不知道能不能提供一些修改上的建議

1.nfc開關作動問題

2.倒數第二個關閉螢幕功能能否把它設成類似於按電源鍵的功能 按一下關閉螢幕 長按開啟電源選單
因為目前的版本,長按會進入鎖屏設定的部分,和前面有重複

3.最後一個電源按鈕要長按才會開啟重啟的選單,不知能否把它改成按一下就立刻開啟
(類似23鍵的功能),這樣可以把它的敘述改成快速重啟,使用上也比較方便

4.GPS開關開啟時它好像會誤判你在使用GPS,因此出現"正在使用GPS搜尋..."的敘述
請問一下E大:
右下角Apps圖示的路徑不是SecLauncher2.apk\res\drawable-xhdpi
檔名為:ic_allapps.png及ic_allapps_pressed.png嗎?
怎麼改了無效?

可以的話幫我改一下路徑...
附加壓縮檔: 201212/mobile01-a9f341b5bbec09c9adf321b03eb67fa2.zip
7105和7100打架了,T24一個也刷不進去
ENABLE SRS WOW HD MusicPlayer

1.反編譯 MusicPlayer.apk
2.進入 res/values
3.打開 array.xml
4.找到 <array name="sound_alive_entries">
5.新增一個item值 <item>@string/srs_wow_hd</item> 存檔
6.再編譯回去!

註明:
1.編譯完之後不用簽名,因為這是三星的檔案

2.反編譯方法請參考E大的教學文6469樓

3.原文網址:ENABLE SRS WOW HD MusicPlayer

4.在編譯 MusicPlayer.apk這個檔案時,會出現一些錯誤...!通常是res/values裡的strings.xml在做怪,因為在編譯的時候,編譯程式會對照res/values裡的public.xml裡面的值有那些,然後再一行一行的編譯
,當編譯程式對照public.xml的值有strings.xml的值沒有時~!就會編譯錯誤,所以就要把strings.xml裡的值加進去.
例如:
以下是我編譯出來的錯誤結果,您可以看到下面粗體字的地方說D:\S_ZSALK3_Apktool\1\res\values-es\strings.xml:111: error: Multiple substitutio
ns specified in non-positional format; did you mean to add the formatted="false"
attribute?這一行就是說res/values-es/strings.xml少了這formatted="false",所以就去res/values-es/strings.xml的第111行裡加上formatted="false".

原res/values-es/strings.xml的第111行為
<string name="rich_info_list_item_text">d. %s</string>

修正為
<string name="rich_info_list_item_text" formatted="false">d. %s</string>

然後我們再看D:\S_ZSALK3_Apktool\1\res\values\public.xml:1334: error: Public symbol string/al
phabet_focused_indexlist declared here is not defined.這一行的話,就是res\values\public.xml有定義這個值存在,但res/values/strings.xml裡面沒有,所以就進入res/values/strings.xml加入<string name="alphabet_focused_indexlist">ABCDEFGHIJKLMNOPQRSTUVWXYZㄱㄴㄷㄹㅁㅂㅅㅇㅈㅊㅋㅌㅍㅎあかさたなはまやらわ</string>即可,至於<string name="alphabet_focused_indexlist"></string>這裡面的值要加入什麼可以參考其他語系的strings.xml來拷貝過去~!

編譯出來的錯誤結果
D:\S_ZSALK3_Apktool>3IN_3.cmd 1

D:\S_ZSALK3_Apktool>apktool b "1"
I: Checking whether sources has changed...
I: Smaling...
I: Checking whether resources has changed...
I: Building resources...
D:\S_ZSALK3_Apktool\1\res\values-es\strings.xml:111: error: Multiple substitutio
ns specified in non-positional format; did you mean to add the formatted="false"
attribute?

D:\S_ZSALK3_Apktool\1\res\values-es\strings.xml:111: error: Unexpected end tag s
tring
D:\S_ZSALK3_Apktool\1\res\values-pt\strings.xml:111: error: Multiple substitutio
ns specified in non-positional format; did you mean to add the formatted="false"
attribute?
D:\S_ZSALK3_Apktool\1\res\values-pt\strings.xml:111: error: Unexpected end tag s
tring
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1334: error: Public symbol string/al
phabet_focused_indexlist declared here is not defined.

D:\S_ZSALK3_Apktool\1\res\values\public.xml:1332: error: Public symbol string/al
phabet_indexlist declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1327: error: Public symbol string/am
g_lisence_line1 declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1328: error: Public symbol string/am
g_lisence_line2 declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1316: error: Public symbol string/ba
ckground_playing declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1322: error: Public symbol string/ba
ss_enhancement declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1335: error: Public symbol string/ch
orous declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1318: error: Public symbol string/cu
stom declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1330: error: Public symbol string/do
_recognition declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1320: error: Public symbol string/dy
namic declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1315: error: Public symbol string/ef
fect declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1336: error: Public symbol string/eq
_8 declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1337: error: Public symbol string/li
st_song_deleted declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1317: error: Public symbol string/li
ve declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1321: error: Public symbol string/mu
sic_clarity declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1338: error: Public entry identifier
0x7f0a0201 entry index is larger than available symbols (index 513, total symbo
ls 491).
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1338: error: Public symbol string/no
_square_selected declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1329: error: Public symbol string/re
quest_config declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1331: error: Public symbol string/re
quest_results declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1333: error: Public symbol string/tw
str_indexlistYears declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1325: error: Public symbol string/ty
pe_1 declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1326: error: Public symbol string/ty
pe_2 declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1324: error: Public symbol string/vi
sual_help_text declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1323: error: Public symbol string/vi
sualization declared here is not defined.
D:\S_ZSALK3_Apktool\1\res\values\public.xml:1319: error: Public symbol string/wi
de declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutExce
ption: could not exec command: [aapt, p, -F, C:\Users\Sfc\AppData\Local\Temp\APK
TOOL8943573280465599083.tmp, -I, D:\MyDocuments\apktool\framework\1.apk, -I, D:\
MyDocuments\apktool\framework\2.apk, -I, D:\MyDocuments\apktool\framework\3.apk,
-I, D:\MyDocuments\apktool\framework\4.apk, -S, D:\S_ZSALK3_Apktool\1\res, -M,
D:\S_ZSALK3_Apktool\1\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\U
sers\Sfc\AppData\Local\Temp\APKTOOL8943573280465599083.tmp, -I, D:\MyDocuments\a
pktool\framework\1.apk, -I, D:\MyDocuments\apktool\framework\2.apk, -I, D:\MyDoc
uments\apktool\framework\3.apk, -I, D:\MyDocuments\apktool\framework\4.apk, -S,
D:\S_ZSALK3_Apktool\1\res, -M, D:\S_ZSALK3_Apktool\1\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:191)
... 6 more

D:\S_ZSALK3_Apktool>

以下為,我在res/values裡的strings.xml新填加的值,可當做參考:
<string name="alphabet_focused_indexlist">ABCDEFGHIJKLMNOPQRSTUVWXYZㄱㄴㄷㄹㅁㅂㅅㅇㅈㅊㅋㅌㅍㅎあかさたなはまやらわ</string>
<string name="alphabet_indexlist">ABCDEFGHIJKLMNOPQRSTUVWXYZㄱ@</string>
<string name="amg_lisence_line1">Content provided courtesy of</string>
<string name="amg_lisence_line2">by All Media Guide</string>
<string name="background_playing">Reproduction in 2nd plane</string>
<string name="bass_enhancement">Improved low</string>
<string name="chorous">Chorus</string>
<string name="custom">personalize</string>
<string name="do_recognition">Recognizing...</string>
<string name="dynamic">dynamic</string>
<string name="effect">Sound Effects</string>
<string name="eq_8">12k</string>
<string name="list_song_deleted">This song will be removed</string>
<string name="live">direct Em</string>
<string name="music_clarity">Sharpness music</string>
<string name="no_square_selected">Not selected Music Square</string>
<string name="request_config">The configuration request...</string>
<string name="request_results">A request results...</string>
<string name="twstr_indexlistYears">1234567890</string>
<string name="type_1">Tipo 1</string>
<string name="type_2">Tipo 2</string>
<string name="visual_help_text">View based animation in music</string>
<string name="visualization">preview</string>
<string name="wide">broad</string>



成功圖


以下是修改後的檔案
4.11ZSALK3原始檔案下載:201212/mobile01-fb5c65b2b6ae2c3adc0ab11c59984f19.zip
4.11ZSALK3修改後檔案下載:201212/mobile01-4428e29051e7495d2996fe76e6837684.zip
4.12_dlk7修改後檔案下載: 201212/mobile01-3232062992a5958fd7394c3ddd888cc0.zip
最近連續幾天都在刷note,真的是累人呀,不過為了同事與朋友們的需求還是得升級,升到4•1•2真的像換一支手機一樣,呵,看到他們高興的樣子就值得了,這一支是第六支,可見note賣的還真好,呵

不過這些朋友都還沒有跟進note2...呵..


basic的生活日記 https://basiclife.tw/
e大你好小弟是刷狂大的聖誕特別版 發現刷快速包第5版的地圖破解 無法正常使用導航請問有方法解決嗎?
文章分享
評分
評分
複製連結
請輸入您要前往的頁數(1 ~ 825)

今日熱門文章 網友點擊推薦!