У меня есть приложение, которое начинается с пользовательского URI "E2L: //". В EPUB у меня есть ссылка «E2L: //», которая открывает мое приложение, но как я могу передать параметры? и как я могу получить их из приложения? Спасибо!
Я нашел решение:
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); } } }