1

コードでスライディングドロワーを作成しようとしていますが、コンストラクターのAttributeSet部分をどうすればよいかわかりません。

そのために何をする必要がありますか?

また、スライダーが表示される場所をコードで定義するにはどうすればよいですか?

ありがとう、

4

2 に答える 2

7

SlidingDrawer はハンドルとコンテンツを定義する必要があるため、Java コードでは new できませんが、次のように XML レイアウトでインフレートできます。

slide_drawer.xml:

<?xml version="1.0" encoding="utf-8"?>
<SlidingDrawer
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:handle="@+id/handle"
    android:content="@+id/content">
    <ImageView
        android:id="@id/handle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/tray_handle_bookmark"
        />
    <LinearLayout
        android:id="@id/content"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical"
        android:background="#FF000000"
        />
</SlidingDrawer>

Java コードの場合:

// you main Layout
LinearLayout mainLayout = new LinearLayout(this);
        mainLayout.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT));
        mainLayout.setOrientation(LinearLayout.VERTICAL);

// add sliding Drawer
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        slidingDrawer = (SlidingDrawer)inflater.inflate(R.layout.sliding_drawer, mainLayout, false);
        mainLayout.addView(slidingDrawer);

// get Layout for place your content in sliding drawer
LinearLayout slideContent = (LinearLayout)slidingDrawer.findViewById(R.id.content);

slideContent.addView(.....); // add your view to slideDrawer
于 2011-07-05T09:58:07.630 に答える
2

SlidingDrawerJavaコードで直接作成できないようです。XMLレイアウトで定義し、そのレイアウトを拡張する必要があります。

ごめん!

于 2010-05-14T11:55:27.043 に答える