我希望我的按钮是圆形的,但它们是扁圆形/椭圆形(请查看截图)。有人可以帮忙吗?我的代码(底部有2个按钮):
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="?attr/actionBarSize"
android:background="#ffffff"
>
<TextView
android:id="@+id/tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:text="@string/package_size"
tools:ignore="RtlSymmetry" />
<View
android:layout_width="fill_parent"
android:layout_height="2dp"
android:layout_marginLeft="32dp"
android:layout_marginRight="32dp"
android:background="#e9eaea"/>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/radio_group"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/radio_small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/small" />
<RadioButton
android:id="@+id/radio_medium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/medium" />
<RadioButton
android:id="@+id/radio_large"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/large" />
</RadioGroup>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:weightSum="4"
android:background="#e6e7e8"
>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_minus"/>
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_plus"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
我需要更改布局吗?或者为什么会这样?
答案 0 :(得分:0)
您使用的加号和减号图标具有明确的高度和宽度。如果将它们放置在小于其默认大小的布局中,则它们将以其他方式运行,因此,指定其持有者的大小等于或大于图标大小。 在您的情况下,只需指定按钮的直接线性布局标记的高度。
答案 1 :(得分:0)
您已设置按钮的背景。
默认情况下,按钮不是方形,因此背景会拉伸到按钮的默认宽度。
因此手动设置宽度和高度相同。