0
我使用GridLayout創建了一個活動,在屏幕上顯示4個按鈕 - 它們在屏幕的中心水平和垂直顯示。GridLayout在活動和片段中顯示不同
現在我已經改變了活動,以顯示內部使用標籤上http://www.androidhive.info/2013/10/android-tab-layout-with-swipeable-views-1/
發現了一個指南,但該選項卡顯示所有排列在屏幕的左上方的一個片段。
**我想在屏幕中間的4個按鈕的顯示水平和垂直方向*
BTN 1 BTN 2
BTN 3 BTN 4
這是片段的我的佈局文件
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:columnCount="2"
android:orientation="horizontal" >
<Button
android:id="@+id/Btn_Show"
android:text="Btn Show"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_column="0"
android:drawableTop="@drawable/ic_launcher" />
<Button
android:id="@+id/Btn_2"
android:text="Btn 2"
android:layout_width="100dp"
android:layout_height="100dp"
android:drawableTop="@drawable/ic_launcher" />
<Button
android:id="@+id/Btn_3"
android:text="Btn 3"
android:layout_width="100dp"
android:layout_height="100dp"
android:drawableTop ="@drawable/ic_launcher" />
<Button
android:id="@+id/Btn_4"
android:text="Btn 4"
android:layout_width="100dp"
android:layout_height="100dp"
android:drawableTop="@drawable/ic_launcher" />
</GridLayout>
這是該活動的主要佈局,其中包括片段作爲標籤
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>
非常感謝您:) –
歡迎您:) –
嗨同樣,我希望按鈕在邊上也有空隙(所以它們也是水平居中。我嘗試刪除重量值,使按鈕看起來更小,但不會水平居中。我該如何做到這一點? –