1
我想製作一個按鈕,左上角和底部填充的位置是相同的。 但我得到的是這樣的:Android,意外的按鈕左右填充
這裏是一個佈局:
<RelativeLayout android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/people_number_label"
android:text="@string/number_of_people"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/people_number"
android:layout_toRightOf="@+id/people_number_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
請改變代碼中的內容? – EE66
代碼沒有變化 –