如何在两个编辑文本框之间获得间距作为下面附加的图像

时间:2016-04-12 17:48:12

标签: android android-layout listview android-custom-view android-xml

I want to know , how do I get the below style of result ?

可以将文本输入其中。在给定的活动中,只有这两个文本小部件是可能的。我想知道结构,我必须采用这样的结果。

我还在学习阶段。

2 个答案:

答案 0 :(得分:0)

有很多方法可以实现这一目标。我建议您先阅读this,然后了解如何在Android上构建布局。

通常,您可以通过添加一些边距和/或填充来在视图之间添加间距。

如果您想快速复制特定设计,请执行以下操作:

  1. 将垂直LinearLayout作为根布局(灰色背景)。
  2. 添加两个CardViews(每个框一个)。这将增加 背景和间距。
  3. 为这些CardView添加其他视图。

答案 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>

这是您展示的图像的基本结构。随之而来。使用形状等添加所需的边框。