我是 android 应用程序的新手,我正在制作一个具有 NFC 技术的应用程序,在这里我想制作一个通知栏,如默认操作系统状态栏通知。我现在自定义了它,我希望它在所有屏幕中调用/显示,而最终用户在应用程序中从上到下将其拉动。
这是我的自定义滑动抽屉类,并在 Main.xml 文件中使用它
<com.abc.xyx.customnotification.CustomDrawer
xmlns:my="http://schemas.android.com/apk/res/com.abc.xyx.app"
android:id="@+id/drawer"
my:direction="topToBottom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
my:handle="@+id/handle"
my:content="@+id/content"
android:layout_marginTop="100dp"
>
<include
android:id="@id/content"
layout="@layout/slider"/>
<ImageView
android:id="@id/handle"
android:layout_width="wrap_content"
android:layout_height="150px"
android:visibility="invisible"
android:src="@drawable/tooltiparea" />
</com.abc.xyx.customnotification.CustomDrawer>