在我的Android应用程序中,我有一个复选框和一些与之关联的文本。默认情况下,文本位于右侧,复选框位于左侧,但复选框和文本不在同一行,复选框位于下一行,我该如何解决?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="55dip"
android:orientation="vertical" >
<TextView
android:id="@+id/lblListItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="17dip"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft"/>
<CheckBox
android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:focusable="false"/>
</LinearLayout>
答案 0 :(得分:0)
将线性布局的方向更改为水平,或者只需将android:text =“CHECKBOX TEXT”添加到您的复选框。