Android プラットフォーム用の新しいアプリケーションを作成しています。アプリケーションの使用方法をユーザーに示すインタラクティブなムービーを追加する必要があります。
Angry Birds のビデオのように、ダイアログの外側にボタンが広がるようなものが欲しいです。
このような:
まず何かのアニメーション動画が必要だと思ったので、Androidの動画ビューを確認したのですが、使い方がわからず、本当に必要なのですか?
次に、このウィンドウは通常のダイアログですか、それとも何か他のものですか? 通常のダイアログを試してみましたが、このボタンのアイデアは思いつきませんでした。すべてのボタンがダイアログ自体の中にあり、表示したくないように表示することはできません (Angry Birds ダイアログなど)。
どんな助けでも素晴らしいでしょう、ありがとう。
編集: これはカスタムダイアログです:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/videoView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Test Test"
android:textSize="50dip"
android:textColor="@android:color/white"/>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignRight="@id/videoView"
android:layout_marginBottom="20dp"
android:layout_marginRight="85dp"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
そして、これは私が得るものです: