幫忙看一下我設置layout_gravity哪出現問題了。
<Button
android:id="@+id/test_button"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="test"
android:textSize="25sp" />
但是center沒有實現任何事件,而且eclipse也沒用在下拉菜單顯示。
不知道哪出問題了?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/test_button"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="test"
android:textSize="25sp" />
</LinearLayout?
android:layout_gravity位於LinearLayout.LayoutParams
因此在LinearLayout中使用。
或者這樣改也可以:
<Button
android:id="@+id/test_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="test"
android:textSize="25sp" />