我activity_choose_number1.xml如何將android中checkedTextView的複選框和文本居中?
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_choose_number1" />
這是content_choose_number1.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.abc.abc.ChooseNumber1"
tools:showIn="@layout/activity_choose_number1">
<ListView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:id="@+id/listViewNumberList"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
</LinearLayout>
這是secnumsinglechoice.xml
<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:checkMark="@null"
android:drawableStart="?android:attr/listChoiceIndicatorSingle"
tools:targetApi="ice_cream_sandwich"
android:textSize="25dp"
android:linksClickable="false"
android:checked="false"
android:paddingTop="20dp"
android:paddingBottom="20dp" />
secnumsinglechoice.xml是android.R.layout.simple_list_item_single_choice的複製粘貼,並進行了一些更改。
現在我需要的是中心對齊secnumusingchoice.xml的複選框和文本。我還需要複選框,留下文字的側
事情我試過列表視圖中的每一項 1)如果我做drawableLeft,它創建文本和複選框之間的空間,但不會使雙方爲中心 2)如果我添加android:textAlignment =「center」,那麼它仍然中心對齊文本,但不是複選框。 3)我在這裏嘗試center text and checkmark of CheckedTextView,但我想在這裏嘗試更多的代碼。
請幫助。謝謝。
我不知道你是什麼意思「我想與更多的代碼來這裏嘗試」,但你嘗試了'gravity'屬性?例如,'android:gravity =「center_horizontal」'? –
爲什麼不單獨使用checkbox和textview?嘗試使用'CheckedTextView'很難對齊複選框和文本.. –
@MikeM。是的,儘管我仍然沒有工作。 – user3705478