gpt4 book ai didi

java - 带有标题和文本的圆形 View

转载 作者:行者123 更新时间:2023-11-29 18:30:23 24 4
gpt4 key购买 nike

我该怎么做?它看起来不错,我想使用这样的东西。

Picure

顶部的行应对应标题的末尾

最佳答案

实际上,这些类型的 View 大多是用自定义 View 来完成的。

This tutorial is useful用于自定义 View 。

但是你可以稍微作弊,在drawable文件夹中创建backgound.xml,然后粘贴代码:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<stroke android:color="@color/blue" android:width="4dp"/>
<corners android:radius="10dp"/>
<solid android:color="@color/white"/>
</shape>

然后为您的布局创建custom_background.xml,并粘贴以下代码

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="300dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
>
<LinearLayout

android:background="@drawable/background"

android:layout_marginTop="15dp"
android:layout_marginStart="10dp"
android:layout_marginEnd="10dp"
android:layout_marginBottom="10dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:textSize="20sp"
android:textAlignment="center"
android:textColor="@color/blue"
android:layout_gravity="center"
android:text="Something"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>

</LinearLayout>
<TextView
android:padding="2dp"
android:textColor="@color/blue"
android:textSize="25sp"
android:background="@color/white"
android:layout_marginStart="50dp"
android:text="Title"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

</androidx.constraintlayout.widget.ConstraintLayout>

然后你会得到如下图

enter image description here

注意

  • 我正在使用 androidX
  • 您可以放置​​任何布局而不是 LinearLayout

关于java - 带有标题和文本的圆形 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56565603/

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