10

我想知道在android中是否可以做这样的表格:

在此处输入图像描述

此刻,我做了一个形状来产生边框(我用这个形状作为我的线性布局的背景,但我不知道如何处理文本)。

提前致谢。

4

1 回答 1

29

我已经设法使用以下技术获得了一个带有标题的框架。

  1. 用于FrameLayout整体布局。

  2. 在里面为你的主要内容添加另一个布局 - 这可以是任何东西。对于此布局的背景,请使用自定义 XML drawable withstroke来绘制框架。确保在此布局中添加边距,尤其是marginTop,因为您需要一些空间来显示框架的标题。还要添加一些填充以使其看起来更好。

  3. 使用TextView不透明背景和一些填充作为标题。将marginLeft其设置为合理的值以从左侧偏移标题。

这是我的XML:

<?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="@android:color/white">

    <!--  This is the main content -->
    <RelativeLayout
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        android:layout_margin="15dp" android:background="@drawable/frame"
        android:orientation="vertical" android:padding="20dp">

        <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:text="Main Content" android:layout_centerInParent="true" />

    </RelativeLayout>

    <!--  This is the title label -->
    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:background="@android:color/white" android:padding="5dp"
        android:text="Testing"
        android:layout_marginLeft="30dp" android:textColor="@android:color/black" />

</RelativeLayout>

执行时,我在应用程序上得到了这个:

在此处输入图像描述

随意调整边距/填充以按照您需要的方式对齐标题。

于 2012-08-28T13:18:15.487 回答