gpt4 book ai didi

android - android中的图例和字段集

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:08:40 24 4
gpt4 key购买 nike

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

enter image description here

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

提前致谢。

最佳答案

我已经使用以下技术成功地获得了带有标题的框架。

  1. 整体布局使用FrameLayout

  2. 在内部为您的主要内容添加另一个布局 - 这可以是任何内容。对于此布局的背景,使用带有 stroke 的自定义 XML drawable 来绘制框架。确保在此布局中添加边距,尤其是 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>

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

enter image description here

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

关于android - android中的图例和字段集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12155353/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com