Translations:Android Training/Starting Another Activity/5/en: Unterschied zwischen den Versionen

Aus Android Wiki
(Neue Version von externer Quelle importiert)
 
(Neue Version von externer Quelle importiert)
 
Zeile 1: Zeile 1:
== Build an Intent ==
== Build an Intent ==
# In <code>MyActivity.java</code>, inside the <code>sendMessage()</code> method, create an <code>Intent</code> to start an activity called<code>DisplayMessageActivity</code> with the following code:
# In <code>MyActivity.java</code>, inside the <code>sendMessage()</code> method, create an <code>Intent</code> to start an activity called <code>DisplayMessageActivity</code> with the following code:

Aktuelle Version vom 20. Dezember 2015, 21:27 Uhr

Nachricht im Original (Android Training/Starting Another Activity)
== Build an Intent ==
# In <code>MyActivity.java</code>, inside the <code>sendMessage()</code> method, create an <code>Intent</code> to start an activity called <code>DisplayMessageActivity</code> with the following code:

Build an Intent[Quelltext bearbeiten]

  1. In MyActivity.java, inside the sendMessage() method, create an Intent to start an activity called DisplayMessageActivity with the following code: