我的应用主页面中有一个按钮,想要根据布局的背景进行对齐。
但是当我运行应用程序时,按钮没有正确对齐,我知道我可以使按钮不可见,但问题是按钮在背景上对齐。
如果我尝试另一种方式,并将背景放在没有按钮的情况下并设置按钮的背景,我背景的衬里就不会与按钮衬里的衬里相匹配。 还有其他办法吗?
布局的xml文件是
<RelativeLayout 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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".PaperGames"
android:background="@drawable/papergames1"
>
<Button
android:id="@+id/bbollywood"
android:layout_width="match_parent"
android:layout_height="75dp"
android:layout_above="@+id/btictactoe"
android:layout_alignParentRight="true"
android:layout_marginBottom="16dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="65dp"
android:text="BOLLYWOOD" />
<Button
android:id="@+id/btictactoe"
android:layout_width="match_parent"
android:layout_height="75dp"
android:layout_alignLeft="@+id/bbollywood"
android:layout_alignParentBottom="true"
android:layout_marginBottom="164dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="65dp"
android:text="TIC TAC TOE" />