我想知道在android中是否有可能做一个这样的表格:
此时,我做了一个形状来制作边框(我使用这个形状作为我的线性布局的背景,但我不知道如何处理文字)。
提前致谢。
答案 0 :(得分:24)
我已经设法使用以下技术获得带有标题的框架。
使用FrameLayout
进行整体布局。
为您的主要内容添加另一个布局 - 这可以是任何内容。对于此布局的背景,使用带有stroke
的自定义XML drawable来绘制框架。确保在此布局中添加边距,尤其是marginTop
,因为您需要一些空间来显示框架的标题。还要添加一些填充以使其看起来更好。
使用不透明背景的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>
执行时,我会在应用程序上显示:
随意调整边距/填充以按照您需要的方式对齐标题。