Вы можете использовать RelativeLayout, а затем вы можете отформатировать макет с помощью команды
android:layout_above="@+id/mybutton"
android:layout_below="@+id/mybutton"
android:layout_toRightOf="@+id/mybutton"
android:layout_toLeftOf="@+id/mybutton"
* 1003.с 5 компонентами (4 TextFileds и кнопка)
РЕДАКТИРОВАТЬ:
вот быстрое и грязное решение - но оно работало хорошо для меня
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/my_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="BUTTON"
android:layout_centerInParent="true"
/>
<TextView
android:id="@+id/text_above"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/my_button"
android:text="TEXT ABOVE BUTTON"
android:layout_centerHorizontal="true"
/>
<TextView
android:id="@+id/text_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/my_button"
android:text="TEXT LEFT OF BUTTON"
android:layout_centerVertical="true"
/>
<TextView
android:id="@+id/text_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/my_button"
android:text="TEXT RIGHT OF BUTTON"
android:layout_centerVertical="true"
/>
<TextView
android:id="@+id/text_BELOW"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/my_button"
android:text="TEXT BELOW BUTTON"
android:layout_centerHorizontal="true"
/>
</RelativeLayout>