我将此作为布局的一部分
<RelativeLayout
android:layout_weight="1"
android:layout_height="match_parent"
android:id="@+id/home_btn"
style="@style/Home_Button">
<TextView android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textStyle="bold"
android:gravity="center"
android:id="@+id/a"
android:text="@string/centres"/>
<ImageView android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_above="@id/a"
android:src="@drawable/ic_home_btn"/>
</RelativeLayout>
我需要将 TextView 置于 RelativeLayout 的中心,并将 ImageView 置于 TextView 上方,并设置 dp 偏移量(例如图像和文本之间的 10dp 间隙)
我尝试了各种不同的方法,到目前为止没有任何效果。我怎样才能正确地让它工作?
哦,风格是这样的
<style name="Home_Button_NL">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">match_parent</item>
<item name="android:background">@drawable/home_button</item>
<item name="android:textColor">@color/white</item>
<item name="android:gravity">center</item>
<item name="android:layout_marginTop">@dimen/padding_tiny</item>
</style>