我有一个小问题。
我正在创建一个自定义按钮小部件
<?xml version="1.0" encoding="utf-8"?>
<Button
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/barBtn"
android:layout_width="wrap_content"
android:layout_height="32dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:textColor="@color/white"
android:background="@drawable/sel_btn_bar"
android:layout_centerVertical="true"
/>
然后我将它放入RelativeLayout
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/bar"/>
<include layout="@layout/segm_btn_stores"/>
<include
layout="@layout/btn_bar"
android:layout_alignParentRight="true"/>
</RelativeLayout>
但是 align 在我放置可以随意移动的include
标签之前不起作用。RelativeLayout
但是这种方法会产生另一个问题:按钮会比在外面时更窄RelativeLayout
。我能做些什么?我想在一个地方设置按钮参数。
是的,我可以添加这一行:android:layout_alignParentRight="true"
标记Button
,它会工作!
所以问题是:为什么它适用于Button
标签而不适用于include
标签?
更新
按钮和片段布局在那里。