我正在尝试在代码中创建一个滑动抽屉,但我不明白要为构造函数的 AttributeSet 部分做什么。
我需要为此做些什么?
另外,如何在代码中定义滑块将显示的位置?
谢谢,
我正在尝试在代码中创建一个滑动抽屉,但我不明白要为构造函数的 AttributeSet 部分做什么。
我需要为此做些什么?
另外,如何在代码中定义滑块将显示的位置?
谢谢,
SlidingDrawer 不能在 Java 代码中新建,因为它必须定义句柄和内容,但您可以在 XML 布局中进行如下膨胀:
滑动抽屉.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
看起来SlidingDrawer
无法直接在 Java 代码中创建。您需要在 XML 布局中定义它并扩展该布局。
对不起!