我正在尝试Activity
使用 anNumberPicker
和 a来制作 anTextView
并且我希望 the 位于 thetextView
旁边NumberPicker
并且它将位于NumberPicker
Height 的中间(电视将类似于“选择一个数字:”)我拥有的任何东西试过没有用。(我什至尝试将任何一个放在不同的位置LinearLayout
,将两个LinearLayouts
放在 a 中RelativeLayout
并弄乱了偏好,但它仍然没有用)
这是我尝试过的:
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:paddingTop="30dp"
android:text="@string/Main"/>
<NumberPicker
android:id="@+id/numberPicker1"
android:layout_width="30dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toStartOf="@+id/textView1"
android:clickable="false"
android:paddingTop="0dp" />
</RelativeLayout>
谢谢!