Мне нужно выровнять 3 вида текста, которые должны быть размещены в центре макета без использования каких-либо отступов. - PullRequest
0 голосов
/ 26 февраля 2012
                       TextView
                       TextView TextView

Вид должен отображаться следующим образом

1 Ответ

1 голос
/ 27 февраля 2012
<LinearLayout width="match_parent" height="match_parent" orientation="vertical">

 <TextView with="wrap_content" height="wrap_content" android:gravity="center"/>


 <LinearLayout width="match_parent" height="match_parent" orientation="horizontal"    android:gravity="center">

   <TextView with="wrap_content" height="wrap_content"/>

   <TextView with="wrap_content" height="wrap_content"/>

 </LinearLayout>

</LinearLayout>

Пожалуйста, попробуйте это ......

...