Translations:Android Training/Building a Simple User Interface/16/en

Aus Android Wiki
Version vom 18. Dezember 2015, 02:24 Uhr von FuzzyBot (Diskussion | Beiträge) (FuzzyBot verschob die Seite Translations:Android Training/Eine einfache Benutzeroberfläche erstellen/16/en nach Translations:Android Training/Building a Simple User Interface/16/en, ohne dabei eine Weiterleitung anzulegen: Teil der übersetzba…)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)

android:layout_width and android:layout_height[Quelltext bearbeiten]

Instead of using specific sizes for the width and height, the "wrap_content" value specifies that the view should be only as big as needed to fit the contents of the view. If you were to instead use "match_parent", then the EditText element would fill the screen, because it would match the size of the parent LinearLayout. For more information, see the Layouts guide.