我想设计一个像这个图像中的布局
Frame 1
是灰色的,Frame 2
是透明的。我想我们需要使用FrameLayout
,但我不确切知道如何使用它。
答案 0 :(得分:0)
确实你可以使用FrameLayout
或RelativeLayout
(至少对Frame 1
),但你没有说明你想对这些帧做什么(这将是稍微改变一下)。我会使用RelativeLayout
,因为我猜你除第2帧外还会在第1帧中有内容:
<RelativeLayout android:id="@+id/frame1" android:background="#c1c1c1"// other attributes>
<FrameLayout android:id="@+id/frame2" android:layout_centerInParent="true"
android:background="@android:color/transparent"// other attributes />
</RelativeLayout>
答案 1 :(得分:0)
单向可以是:
<?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"
android:background="#c0c0c0" >
<LinearLayout
android:layout_width="200dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:background="#ffffff"
android:gravity="center" >
</LinearLayout>
</RelativeLayout>
答案 2 :(得分:0)
你不能使用两个框架制作上面的屏幕,因为不可能将一个框架放入另一个框架布局,所以你可以通过另一种方式来制作它,比如采用一个相对布局并放置框架在里面就像,
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/black" >
<FrameLayout
android:id="@+id/frameLayout1"
android:layout_width="250dp"
android:layout_height="100dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="180dp"
android:background="@color/tbl_green">
</FrameLayout>
</RelativeLayout>
可能会对你有帮助。