我正在开发一个UI,我只想在一个活动中添加两个FrameLayout。我希望一个FrameLayout填充父(全屏)布局,另一个FrameLayout在第一个布局上。主要是我想在每个屏幕上的整个应用程序中修复圆形圆圈。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/home_menu"
android:layout_weight="1"
android:src="@drawable/ic_home"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/dis__menu"
android:layout_weight="1"
android:src="@drawable/ic_home"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/gallery_menu"
android:layout_weight="1"
android:src="@drawable/ic_home"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/download_menu"
android:layout_weight="1"
android:src="@drawable/ic_home"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/price_menu"
android:layout_weight="1"
android:src="@drawable/ic_home" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/feedb_menu"
android:layout_weight="1"
android:src="@drawable/ic_home"/>
</LinearLayout>
<FrameLayout
android:id="@+id/container_body"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1">
</FrameLayout>
</LinearLayout>
</LinearLayout>
以上代码将屏幕分为两部分,我想在容器主体FrameLayout上放置菜单。
答案 0 :(得分:0)
使用相对布局而不是线性布局作为父布局,并且不要过多地嵌套布局,渲染嵌套布局需要更多时间。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/container_body"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/darkGrey"></FrameLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@color/blockBtnColor"
android:orientation="vertical">
<ImageView
android:id="@+id/home_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_home" />
<ImageView
android:id="@+id/dis__menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_home" />
<ImageView
android:id="@+id/gallery_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_home" />
<ImageView
android:id="@+id/download_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_home" />
<ImageView
android:id="@+id/price_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_home" />
<ImageView
android:id="@+id/feedb_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_home" />
</LinearLayout>
</RelativeLayout>
试试这个。