A820L用英文就好該如何設定?

czh wrote:
就字面上的意思,只改...(恕刪)


所以....99999.999意思是說...??
原廠沒那麼閒, 只好自己root改room

嗯....希望我沒誤會你的意思~




tedbear168 wrote:
所以....9999...(恕刪)

換我問你啦
Android 2.3與Android 4.0有啥差別?
WinXP 與 Win7 有啥差別?
沒差別為何要改版?
雖然不知道你在害羞啥?有問題就光明正大的版上討論,別人有相同問題才能一起受益,把問題PM我也沒用,會答的在討論區已經答了,發私訊問絕對不回。
沒想到你會問我這個問題~
我要想一下....
ok, 不用想了, 還是說 2.35 -> 4.0 這數字差異還真大! 為何沒3.0!!

另外~我只知到我還在用XP, 這樣可以順利改版嗎?
驅動-> 1.49 -> go.cmd

這樣可以的話, ok不要阻止我~ 我要衝了!
這些問題算是比較基本的知識,其實一般手機使用者只要會「使用」就好了,真有興趣了解的話,自行 google 就能查到很多資料,而且那些資料也不是三言兩語就能解釋清楚,如果是在這邊一問一答感覺有點耗費網路資源
tedbear168 wrote:
...還是說 2.35 -> 4.0 這數字差異還真大! 為何沒3.0!!

mattiaswang wrote:
這些問題算是比較基本...(恕刪)


ok ok ~ 不過剛看到
http://www.mobile01.com/topicdetail.php?f=586&t=2721191&p=1

這是真的嗎?



mattiaswang wrote:
這些問題算是比較基本...(恕刪)


請問刷了那兩個檔案後, 原廠手勢操作及LED功能還是正常的嗎?

Politics: The conduct of public affairs for private advantage.
請問是哪兩個檔案呢?
winjr wrote :
請問刷了那兩個檔案後, 原廠手勢操作及LED功能還是正常的嗎?

...(恕刪)

czh大大的3g.cmd搭配CHT 3G

mattiaswang wrote:
請問是哪兩個檔案呢?...(恕刪)
Politics: The conduct of public affairs for private advantage.
先說一下,「3g.cmd 搭配 CHT 3G」 的那個「CHT 3G」指的是「中華電信 3G」服務,不是檔案喔!

至於你問的手勢和 LED 功能,我想應該是沒有動到原廠設定啦!如果我們用記事本打開 3g.cmd 的話,可以看到裡面的指令:
==========================================================
1. @echo off
2. file\adb reboot-bootloader
3. file\fastboot boot file\boot.img
4. file\adb wait-for-device&file\choice /t 5 /d y /n>nul
5. file\adb remount
6. file\adb push file\apns-conf.xml /system/etc/apns-conf.xml
7. file\adb shell chmod 644 /system/etc/apns-conf.xml
8. file\adb pull /data/data/com.android.providers.settings/databases/settings.db
9. IF EXIST settings.db (
10. file\sqlite3 settings.db "update system set value = '0' where name = 'show_data_connectivity_popup_lgt';
11. file\adb push settings.db /data/data/com.android.providers.settings/databases/settings.db
12. del /f /q settings.db)ELSE color 4f&echo.偵測不到手機,這次安裝可能失敗,請重新安裝。&pause>nul
13. file\adb reboot
==========================================================
1-5 行:進入 fastboot 模式,準備修改手機系統檔案
6 行:adb push 檔案1 檔案2 -> 將電腦裡的檔案1覆寫到手機上的檔案2
7 行:adb shell chmod 644 檔案1 -> 變更檔案1的權限,提高安全性
8 行:adb pull 檔案1 -> 將手機上的檔案1複製到電腦裡
9-12 行:修改 settings.db 的內容,並將修改後的 settings.db 回存到手機上
13 行:adb reboot -> 手機重開機

也就是說,整體看起來就是改了 apns-conf.xml 和 settings.db,前者的話,你可以用記事本打開看看裡面的內容,後者的話,可以參考這裡囉!裡面看來並沒有動到手勢和 LED 的設定,所以「應該」是正常的(因為我是直接按 go.cmd 啊,從來沒按過 3g.cmd!哈)

另外,有心想了解用來控制手機的 adb 命令和參數的話,我也提供一下囉(中文版的話,Google 應該都找得到):
Android Debug Bridge version 1.0.29

-d - directs command to the only connected USB device
returns an error if more than one USB device is present.
-e - directs command to the only running emulator.
returns an error if more than one emulator is running.
-s <serial number> - directs command to the USB device or emulator with
the given serial number. Overrides ANDROID_SERIAL
environment variable.
-p <product name or path> - simple product name like 'sooner', or
a relative/absolute path to a product
out directory like 'out/target/product/sooner'.
If -p is not specified, the ANDROID_PRODUCT_OUT
environment variable is used, which must
be an absolute path.
devices - list all connected devices
connect <host>[:<port>] - connect to a device via TCP/IP
Port 5555 is used by default if no port number is specified.
disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
Port 5555 is used by default if no port number is specified.
Using this command with no additional arguments
will disconnect from all connected TCP/IP devices.

device commands:
adb push <local> <remote> - copy file/dir to device
adb pull <remote> [<local>] - copy file/dir from device

adb sync [ <directory> ] - copy host->device only if changed
(-l means list but don't copy)
(see 'adb help all')
adb shell - run remote shell interactively
adb shell <command> - run remote shell command
adb emu <command> - run emulator console command
adb logcat [ <filter-spec> ] - View device log
adb forward <local> <remote> - forward socket connections
forward specs are one of:
tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
dev:<character device name>
jdwp:<process pid> (remote only)
adb jdwp - list PIDs of processes hosting a JDWP transport
adb install [-l] [-r] [-s] <file> - push this package file to the device and install it
('-l' means forward-lock the app)
('-r' means reinstall the app, keeping its data)
('-s' means install on SD card instead of internal storage)
adb uninstall [-k] <package> - remove this app package from the device
('-k' means keep the data and cache directories)
adb bugreport - return all information from the device
that should be included in a bug report.

adb backup [-f <file>] [-apk|-noapk] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]
- write an archive of the device's data to <file>.
If no -f option is supplied then the data is written
to "backup.ab" in the current directory.
(-apk|-noapk enable/disable backup of the .apks themselves
in the archive; the default is noapk.)
(-shared|-noshared enable/disable backup of the device's
shared storage / SD card contents; the default is noshared.)
(-all means to back up all installed applications)
(-system|-nosystem toggles whether -all automatically includes
system applications; the default is to include system apps)
(<packages...> is the list of applications to be backed up. If
the -all or -shared flags are passed, then the package
list is optional. Applications explicitly given on the
command line will be included even if -nosystem would
ordinarily cause them to be omitted.)

adb restore <file> - restore device contents from the <file> backup archive

adb help - show this help message
adb version - show version num

scripting:
adb wait-for-device - block until device is online
adb start-server - ensure that there is a server running
adb kill-server - kill the server if it is running
adb get-state - prints: offline | bootloader | device
adb get-serialno - prints: <serial-number>
adb status-window - continuously print device status for a specified device
adb remount - remounts the /system partition on the device read-write
adb reboot [bootloader|recovery] - reboots the device, optionally into the bootloader or recovery program
adb reboot-bootloader - reboots the device into the bootloader
adb root - restarts the adbd daemon with root permissions
adb usb - restarts the adbd daemon listening on USB
adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port
networking:
adb ppp <tty> [parameters] - Run PPP over USB.
Note: you should not automatically start a PPP connection.
<tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
[parameters] - Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ <directory> ]
<localdir> can be interpreted in several ways:

- If <directory> is not specified, both /system and /data partitions will be updated.

- If it is "system" or "data", only the corresponding partition
is updated.

environmental variables:
ADB_TRACE - Print debug information. A comma separated list of the following values
1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.
ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.
winjr wrote:
czh大大的3g.c...(恕刪)
文章分享
評分
評分
複製連結

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