2012-02-17 11 views
0

私は、スライダーを一番上から開始して下にスライドさせることを可能にする同僚のメンバーを見つけました。スライダーの後ろにコンテンツを追加する必要がありますが、XMLにどこに入れるべきかはわかりません。たぶん、線形レイアウトを追加する必要があるかもしれませんが、わかりません。画面の中央にあるボタンを1つ追加するだけです。私はそれが次のコードに入れられる必要があると思う:Android XMLレイアウトのボタン

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" xmlns:ns="http://schemas.android.com/apk/res/it.sephiroth.demo.slider"> 

<Button 
    android:id="@+id/button_open" 
    android:layout_width="100dp" 
    android:layout_height="wrap_content" 
    android:text="@string/open" 
    android:layout_centerInParent="true" 
    android:visibility="gone" /> 

<it.sephiroth.demo.slider.widget.MultiDirectionSlidingDrawer 
    xmlns:my="http://schemas.android.com/apk/res/it.sephiroth.demo.slider" 
    android:id="@+id/drawer" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentTop="true" 
    ns:content="@+id/content" 
    ns:direction="topToBottom" 
    ns:handle="@+id/handle" > 

    <include 
     android:id="@id/content" 
     layout="@layout/pen_content" /> 

    <ImageView 
     android:id="@id/handle" 
     android:layout_width="wrap_content" 
     android:layout_height="40px" 
     android:src="@drawable/sliding_drawer_handle_bottom" /> 
</it.sephiroth.demo.slider.widget.MultiDirectionSlidingDrawer> 
</RelativeLayout> 

私はまた、ボタンが引き出しの後ろにあるようにしたいと思います。 助けがあれば助かります!

答えて

0
Try This: 

<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" xmlns:ns="http://schemas.android.com/apk/res/it.sephiroth.demo.slider"> 
<LinerLayout 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:gravity="center" 
android:layout_height="wrap_content" > 

<Button 
android:id="@+id/button_open" 
android:layout_width="100dp" 
android:layout_height="wrap_content" 
android:text="@string/open" 
android:layout_centerInParent="true" 
android:visibility="gone" /> 
</LinerLayout 
関連する問題