2 つの FrameLayout または親ボタンのリストと FrameLayout の間で対話する Android コードの例はありますか?
- 子アクティビティを下部 (メイン) FrameLayout に追加する
- 新しい子アクティビティが追加されたときに iOS のようなプッシュ アニメーションを表示する
==============
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="100dp"
android:orientation="horizontal" ><Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B4" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B5" />
</LinearLayout>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"><TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="placeholder" />
</FrameLayout>
</LinearLayout>