Ответ 1
То, что я обычно делаю, чтобы исправить это сам, состоит в том, чтобы просто сократить поле "Вид" (т.е. ваш TextView) пополам и добавить тот же номер, что и дополнение к содержащей ViewGroup (т.е. LinearLayout). Таким образом, вы получите равномерное расстояние вокруг всех элементов. Например:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="5dip"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dip"
android:text="I'm a TextView!"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dip"
android:text="I'm a TextView!"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dip"
android:text="I'm a TextView!"
/>
</LinearLayout>