0
我有一個以自定義uri「E2L://」開頭的應用程序。在EPUB中,我有一個鏈接「E2L://」,可以打開我的應用程序,但我如何傳遞參數?以及如何從應用中獲取它們?謝謝!在android中如何使用自定義URI將參數傳遞給應用程序
我有一個以自定義uri「E2L://」開頭的應用程序。在EPUB中,我有一個鏈接「E2L://」,可以打開我的應用程序,但我如何傳遞參數?以及如何從應用中獲取它們?謝謝!在android中如何使用自定義URI將參數傳遞給應用程序
我已經找到了解決辦法:
public class Etiqueta extends Activity {
private CharSequence frase;
private EditText texto;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
texto = (EditText) findViewById(R.id.editText1);
Uri data = getIntent().getData();
if (data==null) { } else {
String datos=data.toString();
texto.setText(datos);
}
}
}