程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android layout-android-layout_gravity的問題

android layout-android-layout_gravity的問題

編輯:編程綜合問答
android-layout_gravity的問題

幫忙看一下我設置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" />
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved