android的Activity能够嵌套另一个Activity吗?
展开全部
整个布局用AbsoluteLayout,上半部分用来放封面; 在AbsoluteLayout中嵌套一个FrameLayout, 让FrameLayout从AbsoluteLayout的中间开始往下排,把控件放在FrameLayout上就可以了,我写了一个简单的,你可以看看:
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android=""
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- 上半部分,具体的你自己写-->
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="图片" />
<!-- 下半部分-->
<FrameLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_x="0dp" android:layout_y="200dp">
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<Button android:text="前一曲" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:text="播放/暂停" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:text="后一曲" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</FrameLayout>
</AbsoluteLayout>
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android=""
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- 上半部分,具体的你自己写-->
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="图片" />
<!-- 下半部分-->
<FrameLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_x="0dp" android:layout_y="200dp">
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<Button android:text="前一曲" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:text="播放/暂停" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:text="后一曲" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</FrameLayout>
</AbsoluteLayout>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询