按钮背景 ( ) 的一小部分button.png
被截断。这里的res/layout/activity_home_screen.xml
文件:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".HomeScreen"
android:background="@drawable/bg_repeat"
android:padding="20dp"
android:stretchColumns="0" >
<TableRow
android:layout_margin="10dp" >
<Button
android:id="@+id/news_button"
android:textSize="40sp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/button"
android:text="@string/news_button"
android:onClick="gotoNews" />
</TableRow>
<TableRow
android:layout_margin="10dp">
<Button
android:id="@+id/events_button"
style="@style/AppBaseTheme"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/button"
android:text="@string/events_button"
android:textSize="40sp"
android:onClick="gotoEvents" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_margin="10dp">
<Button
android:id="@+id/nav_button"
style="@style/AppBaseTheme"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/button"
android:text="@string/nav_button"
android:textSize="40sp"
android:onClick="gotoNav" />
</TableRow>
</TableLayout>
如何不切断背景?