我有5 checkboxes
,每个复选框的text
距复选框中心为misaligned vertically
。我尝试向chckbox添加填充或空白,但没有帮助,因为据我所知,您无法为文本专门添加填充。这是一张可以更好地解释我的问题的图片!
复选框文本在第一个复选框上未对齐。我想要的结果是第四个复选框。
编辑
我以编程方式从数组创建复选框:
LinearLayout typeLinLayout = (LinearLayout)findViewById(R.id.typeLinLay);
TableRow.LayoutParams checkParams = new TableRow.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
checkParams.setMargins(0, 15, 0, 0);
for (int k = 0; k < config.checkBoxTypeFindViewById.length; k++)
{
CheckBox checkBox = new CheckBox(this);
checkBox.setLayoutParams(checkParams);
typeLinLayout.addView(checkBox, checkParams);
checkBox.setId(config.checkBoxTypeFindViewById[k]);
checkBox.setText(config.checkBoxTextType[k]);
checkBox.setOnClickListener(onCheckboxClickedType);
checkBox.setLayoutDirection(View.LAYOUT_DIRECTION_RTL);
checkBox.setGravity(Gravity.LEFT);
checkBox.setTextDirection(View.TEXT_DIRECTION_ANY_RTL);
checkBox.setTextSize(16);
checkBox.setAllCaps(true);
}
在这里xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@color/mainTextBGColor">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginStart="15dp"
android:layout_marginEnd="15dp">
<TextView
android:id="@+id/typesText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="30dp"
android:layout_marginBottom="10dp"
android:textSize="@dimen/optionsHeaders"
android:fontFamily="@font/lato"
android:textColor="@color/mainBGColor"
android:text="@string/optionsType"/>
<LinearLayout
android:id="@+id/typeLinLay"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:backgroundTint="@color/mainBGColor">
</LinearLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>
非常感谢您的帮助!