Help CÁC LỆNH HỮU ÍCH ĐỂ ĐIỀU KHIỂN ANDROID QUA ADB (PHẦN 1)

wormiit

Senior
Joined
Apr 1, 2014
Messages
587
Reactions
521
MR
3.135
Chat with me via Yahoo Messenger Follow me on Facebook
Mở một URL bằng browser (android.intent.action.VIEW)

adb shell am start -a android.intent.action.VIEW -d

Mở một URL cài App bằng Google Play (com.android.vending)

adb shell am start -n com.android.vending/com.google.android.finsky.activities.LaunchUrlHandlerActivity

Mở một cái gì đó bằng trình duyệt nào đó

adb shell monkey -p com.package.name -c android.intent.category.LAUNCHER 1
adb shell am start -a android.intent.action.VIEW -n [application/intent] -d
adb shell am start -n [com.your.packages/com.your.packages.Activity]
adb shell am start PACKAGE_NAME/ACTIVITY_IN_PACKAGE adb shell am start PACKAGE_NAME/FULLY_QUALIFIED_ACTIVITY

#example adb shell am start -n com.growingwiththeweb.example/.MainActivity
adb shell am start -n com.growingwiththeweb.example/com.growingwiththeweb.example.MainActivity

Ví dụ:
adb shell am start -a android.intent.action.VIEW -n org.mozilla.fennec/.App -d http://yoloteam.org

Muốn mở nhiều hơn? Thủ thuật chi tiết tại đây
 

Announcements

Today's birthdays

Forum statistics

Threads
427,443
Messages
7,209,490
Members
179,722
Latest member
phongkhammedic

Most discussed of week

Most discussed of week

Back
Top Bottom