0
我有一個框架佈局。框架佈局的高度是400px。我在佈局的底部有一個按鈕。現在我想要在框架佈局頂部的第二個按鈕。這是一個按鈕。Android - FrameLayout有兩行 - 頂部和底部?
<FrameLayout
android:id="@+id/framelayout1"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" >
<ImageButton
android:id="@+id/smileButton"
android:background="@drawable/smile_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:adjustViewBounds="true"
android:scaleType="centerInside" />
</FrameLayout>
而這是與兩個按鈕。它不工作。我沒有看到頂部的第二個按鈕。
<FrameLayout
android:id="@+id/framelayout1"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" >
<ImageButton
android:id="@+id/smileButton"
android:background="@drawable/smile_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|right"
android:adjustViewBounds="true"
android:scaleType="centerInside" />
<ImageButton
android:id="@+id/smileButton"
android:background="@drawable/smile_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:adjustViewBounds="true"
android:scaleType="centerInside" />
</FrameLayout>