Translations:Android Training/Building a Simple User Interface/12/en: Unterschied zwischen den Versionen

Aus Android Wiki
(Neue Version von externer Quelle importiert)
 
K (FuzzyBot verschob die Seite Translations:Android Training/Eine einfache Benutzeroberfläche erstellen/12/en nach Translations:Android Training/Building a Simple User Interface/12/en, ohne dabei eine Weiterleitung anzulegen: Teil der übersetzba…)
 

Aktuelle Version vom 18. Dezember 2015, 03:24 Uhr

Nachricht im Original (Android Training/Building a Simple User Interface)
# In the <code>activity_my.xml</code> file, within the <code><LinearLayout></code> element, define an <code><EditText></code> element with the id attribute set to @+id/edit_message.
# Define the <code>layout_width</code> and <code>layout_height</code> attributes as <code>wrap_content</code>.
# Define a <code>hint</code> attribute as a string object named <code>edit_message</code>.
  1. In the activity_my.xml file, within the <LinearLayout> element, define an <EditText> element with the id attribute set to @+id/edit_message.
  2. Define the layout_width and layout_height attributes as wrap_content.
  3. Define a hint attribute as a string object named edit_message.