我是 Android 开发的新手。我想要做的是放置几对 TextView-CheckBox 以便它们中的每一个都在一个单独的行中:
<TextView> ................ <CheckBox>
<TextView> ................ <CheckBox>
<TextView> ................ <CheckBox>
TextView
应该在左侧和CheckBox
右侧。而且我还想将“关于”菜单项放在最底部。因此,它看起来,这就是我想要的:
<TextView> ................ <CheckBox>
<TextView> ................ <CheckBox>
<TextView> ................ <CheckBox>
<About>
到目前为止,我所拥有的是一对 CheckBox 和 TextView:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
显然,当我尝试再添加一对CheckBox
andTextView
时,我失败了——它们没有出现。而且,可悲的是,我还不知道如何将菜单项添加到我想要的地方。