我正在尝试开发一个Android演示。我想在adb shell中使用命令让演示做我想要的。我可能需要一个shell文件。
我想要的结果就像这样。
root@device:/ # <shell> log "hello world"
然后我的应用程序控制台“hello world”在logcat。
但我不知道如何连接它们。
答案 0 :(得分:1)
您可以通过shell将Intent发送到您的应用,但您的应用必须注册相应的BroadcastListener
。这是一个简单的例子:
public class MyActivity extends Activity {
private static final String TAG = MyActivity.class.getSimpleName();
public static final String INTENT_FILTER = "com.example.myapp.TEST";
public static final String EXTRA_KEY = "new_text";
private class MyIntentReceiver extends BroadcastReceiver {
@Override
public void onReceive(final Context context, final Intent intent) {
final String newText = intent.getExtras().getString(EXTRA_KEY);
Log.d(TAG, "Received new text: " + newText);
}
}
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
registerReceiver(new MyIntentReceiver(), new IntentFilter(INTENT_FILTER));
}
}
然后你可以在shell中做:
am broadcast -a com.example.myapp.TEST -e "new_text" "New text"
您将看到您的应用如何接收并记录它。
答案 1 :(得分:0)
只是为了澄清:您想将命令从adb shell(本地android shell)发送到您的应用程序? 如果没有相当多的代码行,这是不可能的,并且可能需要设备的生根。
只需在应用中添加用户界面即可调用事件,您就会更好。
编辑:正如m0skit0指出的那样,可以通过命令行发送意图。这绝对是最干净的解决方案。