0

android-misc-widgetsで導入された Panel ウィジェットを利用しようとしています。これまでのところ順調です。問題は、スライド パネルがトップ メニュー バーに重なっているということです。明確にするために、次のスクリーンショットを見てください。

これは、ドラッグ ジェスチャを使用してパネルを開いたときです (ここでは問題ありません)。 ここに画像の説明を入力

これは、シングルタップでパネルを開いたときです (トップメニューに重なっているアイコンを見てください): ここに画像の説明を入力

もう 1 つの問題があります。アクティビティ内にコンテンツがある場合、パネルを開くとそのコンテンツが画面の外に押し出されます。
ここに画像の説明を入力

4

1 に答える 1

0

私はなんとかそれをやり遂げましたRelative Layout。すべてのアイテムを適切な場所に配置します。誰かが同じ問題に直面したことがある場合は、xml ファイルを次に示します。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:panel="http://schemas.android.com/apk/res/com.ms.rightel.store"
    android:layout_width="fill_parent"
    android:layout_height="match_parent" >

    <RelativeLayout
        android:id="@+id/RelativeLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/bg" >
  >


        <ScrollView
            android:id="@+id/scrollView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/include1"
            android:layout_marginTop="3dp" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical" >

                <ImageView
                    android:id="@+id/imageView1"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="10dp"
                    android:src="@drawable/categories" />

                <com.devsmart.android.ui.HorizontalListView
                    android:id="@+id/catsHList"
                    android:layout_width="fill_parent"
                    android:layout_height="88dp" >
                </com.devsmart.android.ui.HorizontalListView>

                <ImageView
                    android:id="@+id/imageView2"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="10dp"
                    android:src="@drawable/latest" />

                <com.devsmart.android.ui.HorizontalListView
                    android:id="@+id/topHList"
                    android:layout_width="fill_parent"
                    android:layout_height="88dp" >
                </com.devsmart.android.ui.HorizontalListView>
            </LinearLayout>
        </ScrollView>

        <org.miscwidgets.widget.Panel
            android:id="@+id/panel1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/include1"
            panel:animationDuration="500"
            panel:closedHandle="@drawable/top_switcher_collapsed_background"
            panel:content="@+id/panelContent"
            panel:handle="@+id/panelHandle"
            panel:linearFlying="false"
            panel:openedHandle="@drawable/top_switcher_expanded_background"
            panel:position="top" >

            <LinearLayout
                android:id="@+id/panelContent"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical" >

                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:src="@drawable/android_ldpi" />

                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:src="@drawable/android_ldpi" />
            </LinearLayout>

            <Button
                android:id="@+id/panelHandle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal" />
        </org.miscwidgets.widget.Panel>
 <include
            android:id="@+id/include1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            layout="@layout/header" />
    </RelativeLayout>

</FrameLayout>
于 2012-06-12T11:15:05.880 に答える