我正在尝试在布局中添加切换小部件。 我遇到的问题是小部件出现在右侧,为其文本居住了一个空间(但我不想要任何文本。它看起来像这样。
但我想要的是
我尝试了一些方法,比如使用嵌套布局(适用于小屏幕,但是当我在标签上试用它时,由于大屏幕它会获得更多空间,最终它会向右移动,留下文本空间,即使我没有输入任何文字)。
我目前正在使用的xml代码
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3"
android:orientation="horizontal"
android:weightSum="11">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4"></LinearLayout>
<Switch
android:id="@+id/sosswitch"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:text="" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4"></LinearLayout>
</LinearLayout>
我正在使用上面的代码将开关置于中间,但它仍会在大屏幕中产生问题。
答案 0 :(得分:0)
由于没有限制条件仅使用LinearLayout
,因此使用RelativeLayout
可以解决您的问题。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp"
>
<Switch
android:id="@+id/sosswitch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="" />
</RelativeLayout>
问题是由于在线性布局中使用Switch
系统导致weight
元素的宽度扩展。要在此处对齐Switch
,请使用layout_centerInParent
。