0

如何为中心的活动创建 xml 布局,边框包围在平板电脑视图中,如此处链接的图片:(以红色指定)

xml布局

我想把我的活动放在中间,两列放在两边有没有标准的方法来创建这个布局?

4

1 回答 1

0

像这样创建你的布局

<?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"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="#f5f5f5" >
    </LinearLayout>

    <View
        android:layout_width="2dp"
        android:layout_height="match_parent"
        android:background="#000000" />
    <!-- Activity layout -->

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="2" >
    </LinearLayout>

    <View
        android:layout_width="2dp"
        android:layout_height="match_parent"
        android:background="#000000" />

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="#f5f5f5" >
    </LinearLayout>

</LinearLayout>

只需在背景中替换颜色代码即可获得所需的显示。在此处输入图像描述

于 2013-10-12T14:54:39.237 回答