我有一个带有项目模板的微调器。在里面我有一个textview和一个填充布局的复选框,但它固定在左边框(见图)。如何在不包装内容的情况下使复选框居中?填充和边距不起作用。
项目模板布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">
<TextView
style="?android:attr/spinnerDropDownItemStyle"
android:background="@drawable/location_item_dash"
android:foreground="#000"
android:ellipsize="marquee"
android:singleLine="true"
android:textColor="#FFFFFF"
local:MvxBind="Text LocationName"
android:id="@+id/spinnertext"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.8" />
<CheckBox
local:MvxBind="Checked Selected"
android:background="@drawable/location_item_dash"
android:id="@+id/spinnercheck"
android:gravity="center"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.2"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_centerInParent="true" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
将您的复选框包裹在另一个布局中,并在外部布局中使用中心引力。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">
<TextView
android:id="@+id/spinnertext"
style="?android:attr/spinnerDropDownItemStyle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.8"
android:background="@drawable/location_item_dash"
android:ellipsize="marquee"
android:foreground="#000"
android:singleLine="true"
android:textColor="#FFFFFF"
local:MvxBind="Text LocationName" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="0.2"
android:gravity="center">
<CheckBox
android:id="@+id/spinnercheck"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true"
android:layout_centerVertical="true"
android:background="@drawable/location_item_dash"
android:gravity="center"
local:MvxBind="Checked Selected" />
</LinearLayout>
</LinearLayout>