答案 0 :(得分:0)
您可以使用字段集实现该目标。
<form>
<fieldset>
<legend>Personalia:</legend>
Name: <input type="text"><br>
Email: <input type="text"><br>
Date of birth: <input type="text">
</fieldset>
</form>
答案 1 :(得分:0)
这是类似元素的垂直列表。因此,您可以为他们使用Recyclerview。在项目内部,您可以使用新的Chip视图(请参见https://medium.com/material-design-in-action/chips-material-components-for-android-46001664a40f)。
答案 2 :(得分:0)
您只能设置cardview的背景颜色,不能直接设置边框颜色。因此,请保留一个可绘制的文件作为背景,如下所示:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="3dp" android:color="#abc" />
<corners android:radius="20dp"/>
</shape>
您可以使用以下布局来实现所需的样式:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="15dp"
android:background="@drawable/border"><!--You can add your necessary content within this layout-->
</RelativeLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
android:layout_marginLeft="25dp"
android:text="Sample Text"
android:textSize="20sp"/>