按钮的样式正在添加未知属性 - Android
Button's style is adding unknown attribute - Android
我正在尝试实现 Facebook 活动页面的外观,但在复制他们的三个按钮时遇到了问题,这些按钮表明某人是否要参加活动。
我正在努力实现这个目标,
我的目前看起来像这样,
这是按钮的 XML
<LinearLayout
android:id="@+id/button_holder"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="3"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:paddingBottom="10dp">
<Button
android:id="@+id/button_going"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="14sp"
android:textColor="@color/secondary_text"
android:text="Going"
android:background="@drawable/item_left_button_background"/>
<Button
android:id="@+id/button_maybe"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="14sp"
android:textColor="@color/secondary_text"
android:text="Maybe"
android:background="@drawable/item_middle_button_background"/>
<Button
android:id="@+id/button_decline"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="14sp"
android:textColor="@color/secondary_text"
android:text="Decline"
android:background="@drawable/item_right_button_background"/>
</LinearLayout>
我不知道按钮上方和下方的额外 Padding
或 Margin
是从哪里来的。我在按钮上尝试了 android:padding="0dp"
和 android:layout_margin="0dp"
,但没有效果。
我最好的猜测是它可能与 layout_weight
属性有关。这可能会根据按钮的宽度为按钮提供一定的高度,如果是这种情况,我该如何让按钮变短?
因为你正在应用背景 item_left_button_background
所以它必须是一个图像或包含图像的选择器,这些图像具有特定的高度。当您将按钮高度设置为 wrap_content
时,默认情况下它会采用图像的高度,因此根据我的建议为按钮指定特定高度或根据您需要的尺寸创建背景图像
我正在尝试实现 Facebook 活动页面的外观,但在复制他们的三个按钮时遇到了问题,这些按钮表明某人是否要参加活动。
我正在努力实现这个目标,
我的目前看起来像这样,
这是按钮的 XML
<LinearLayout
android:id="@+id/button_holder"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="3"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:paddingBottom="10dp">
<Button
android:id="@+id/button_going"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="14sp"
android:textColor="@color/secondary_text"
android:text="Going"
android:background="@drawable/item_left_button_background"/>
<Button
android:id="@+id/button_maybe"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="14sp"
android:textColor="@color/secondary_text"
android:text="Maybe"
android:background="@drawable/item_middle_button_background"/>
<Button
android:id="@+id/button_decline"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="14sp"
android:textColor="@color/secondary_text"
android:text="Decline"
android:background="@drawable/item_right_button_background"/>
</LinearLayout>
我不知道按钮上方和下方的额外 Padding
或 Margin
是从哪里来的。我在按钮上尝试了 android:padding="0dp"
和 android:layout_margin="0dp"
,但没有效果。
我最好的猜测是它可能与 layout_weight
属性有关。这可能会根据按钮的宽度为按钮提供一定的高度,如果是这种情况,我该如何让按钮变短?
因为你正在应用背景 item_left_button_background
所以它必须是一个图像或包含图像的选择器,这些图像具有特定的高度。当您将按钮高度设置为 wrap_content
时,默认情况下它会采用图像的高度,因此根据我的建议为按钮指定特定高度或根据您需要的尺寸创建背景图像