Androidアプリは初めてですNFcテクノロジーを備えたアプリを作成しています。ここでは、デフォルトのOSステータスバー通知のような通知バーを作成したいと考えています。私は今それをカスタムにしました。エンドユーザーがアプリ内で上から下に引っ張っている間、すべての画面で呼び出し/表示したいです。
これは私のカスタム Sliding drawer クラスで、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>