答案 0 :(得分:0)
有很多方法可以实现这一目标。我建议您先阅读this,然后了解如何在Android上构建布局。
通常,您可以通过添加一些边距和/或填充来在视图之间添加间距。
如果您想快速复制特定设计,请执行以下操作:
答案 1 :(得分:0)
为您提供一些工作
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"> //Elements inside this will be added vertically on the screen
<EditText
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_margin="10dp"
android:hint="First edittext"/>
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:hint="Second edittext"/>
</LinearLayout>
这是您展示的图像的基本结构。随之而来。使用形状等添加所需的边框。