layout-gravity- все статьи тега ➜ страница 0


Android-центр TextView горизонтально в LinearLayout

У меня есть следующий базовый макет <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/title_bar_background"> <TextView android:layout_width="fill_parent" a ...

Вертикальное выравнивание контента в Android EditText

у меня есть многострочный EditText: <EditText android:layout_gravity="center" android:id="@+id/txtMessage" android:layout_height="wrap_content" android:layout_below="@+id/lblMessage" android:layout_width="wrap_content" android:width="250dip" android:text="" android:maxLength="760" android:lines="4"> </EditText> теперь содержимое выровнено по середине. И я хотел бы, чтобы содержимое было выровнено по верху следующим образом: вертикально выровне ...