これがあなたが望むxmlファイルです。
xmlファイルからパディングを削除し、各ウィジェットにパディングを配置します。ここで、test.xmlは、パディング属性のないバックグラウンドxmlファイルです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center_horizontal"
android:background="@drawable/test"
android:layout_margin="10dp">
<TextView
android:id="@+id/textView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Sample TextView"
android:padding="10dp"/>
<View
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="#000000" />
<TextView
android:id="@+id/textView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Sample TextView"
android:padding="10dp"/>
</LinearLayout>
test.xmlファイルを編集します
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF"/>
<stroke android:width="2dp" android:color="#808080"/>
<corners
android:radius="10dp"/>
</shape>