gpt4 book ai didi

android - LinearLayout 周围带有标题的边框

转载 作者:太空宇宙 更新时间:2023-11-03 10:50:54 24 4
gpt4 key购买 nike

我想在 LinearLayout 周围制作一个带标题的边框,就像这张照片上一样。

layout http://img829.imageshack.us/img829/3461/borderwithtitel.png

我已经有了边框。
如何添加标题?

我通过在 drawable 文件夹中创建一个 .xml 文件来创建边框。我在那里做了一个形状,然后我将线性布局的背景设置为这个形状。

我正在使用 API 级别 8。

最佳答案

根据@Radu的回答,可以看一个例子:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:color="#000000">
<View
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/rectangle"
android:layout_margin="20dp"
/>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="#000000"
android:layout_marginTop="10dp"
android:text="TITLE!"
android:textColor="#ffffff"/>
</RelativeLayout>

</FrameLayout>

@drawable/rectangle 位于可绘制的 rectangle.xml 文件中,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/transparent"/>
<stroke android:width="2dip" android:color="#ffffff"/>
</shape>

关于android - LinearLayout 周围带有标题的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13474935/

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