0

これは私のXMLレイアウトコードです

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@android:color/transparent"
android:clipChildren="false" >
<RelativeLayout 
        android:id="@+id/ll" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:visibility="gone" 
        android:layout_below="@+id/handle"
        android:background="@android:color/black"
        android:layout_centerHorizontal="true"
        >
        <android.support.v4.view.ViewPager
            android:id="@+id/pager1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
             >


        </android.support.v4.view.ViewPager>
</RelativeLayout>
<ListView
    android:id="@+id/listF"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/handle"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:clipChildren="false" >

</ListView>
<RelativeLayout
        android:id="@+id/handle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:clipChildren="false"
        android:background="@drawable/bottom_glass_100_percent" >

        <ImageView
            android:id="@+id/handle1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_alignParentTop="true"
            android:scaleType="centerInside"
            android:background="@drawable/glass_globe"
            android:src="@drawable/icon_skull1" />

        <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_centerVertical="true"
            android:layout_marginLeft="60dp"
            android:layout_alignParentLeft="true"
            android:background="@android:color/transparent"
            android:src="@drawable/leftselector" />

        <ImageButton
            android:id="@+id/imageButton2"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_centerVertical="true"
            android:layout_marginRight="60dp"
            android:layout_alignParentRight="true"
            android:background="@android:color/transparent"
            android:src="@drawable/rightselector" />

    </RelativeLayout>


</RelativeLayout>

レイアウト ll をスライド インに、レイアウト ハンドルをスライド アウトに変換していますが、アニメーションを実行しているときに、ハンドル レイアウトのみが変換され、ll レイアウトが表示されません。削除android:layout_below="@+id/handle"すると、ハンドル レイアウトに重なって表示されます。

ここに私の翻訳xmlがあります

slide_in.xml

 <?xml version="1.0" encoding="utf-8"?>
 <translate 
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:duration="@android:integer/config_longAnimTime" 
  android:fromYDelta="100%p" 
  android:toYDelta="18%p"
  android:fillEnabled="true"
  android:fillAfter="true"
  android:interpolator="@android:anim/accelerate_decelerate_interpolator">
  </translate>

Slide_out.xml

<?xml version="1.0" encoding="utf-8"?>
 <translate
  xmlns:android="http://schemas.android.com/apk/res/android" 
  android:duration="@android:integer/config_longAnimTime" 
  android:fromYDelta="0" 
  android:toYDelta="-82%p"
  android:fillEnabled="true"
  android:fillAfter="true"
  android:interpolator="@android:anim/accelerate_decelerate_interpolator"

  >
  </translate>

ビューページャーを使用し、ビューページャーのスクロールが終了すると元の位置にリセットされるときにのみ、ハンドルレイアウトに移動します。

4

1 に答える 1

0

問題は、使用する前にRelativeLayoutハンドルを参照していて、それを参照するために @+id/ タグを使用しているため、R ファイルに追加されている可能性があると思います。+ (つまり @id/) を取り出してから、他の 2 つの前に実際のハンドル レイアウトを定義してみてください。

例えば

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/transparent"
    android:clipChildren="false"
    android:orientation="vertical" >

    <RelativeLayout
        android:id="@+id/handle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:background="@drawable/bottom_glass_100_percent"
        android:clipChildren="false" >

        <ImageView
            android:id="@+id/handle1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:background="@drawable/glass_globe"
            android:scaleType="centerInside"
            android:src="@drawable/icon_skull1" />

        <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginLeft="60dp"
            android:background="@android:color/transparent"
            android:src="@drawable/leftselector" />

        <ImageButton
            android:id="@+id/imageButton2"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="60dp"
            android:background="@android:color/transparent"
            android:src="@drawable/rightselector" />
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/ll"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/handle"
        android:layout_centerHorizontal="true"
        android:background="@android:color/black"
        android:visibility="gone" >

        <android.support.v4.view.ViewPager
            android:id="@+id/pager1"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
        </android.support.v4.view.ViewPager>
    </RelativeLayout>

    <ListView
        android:id="@+id/listF"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/handle"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:clipChildren="false" >
    </ListView>

</RelativeLayout>
于 2014-07-23T14:06:23.103 に答える