任何在 2 FrameLayout 或父按钮列表与 FrameLayout 之间进行交互的 Android 代码示例?
- 将子活动添加到底部(主)FrameLayout
- 添加新的 Child Activity 时显示类似推送动画的 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>