我在android studio中处理我的xml文件。
我想要" surnameEditText"和" nameEditText",Picture,它们旁边有箭头,宽度与位于它们下方的输入表单相同。
怎么做?这是我的代码。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_register"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/pozadina"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.xyz.ui.RegisterActivity">
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/signUpTextView"
android:layout_centerHorizontal="true"
android:orientation="vertical">
<TextView
android:id="@+id/signUpTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="15dp"
android:text="Sign up"
android:textAlignment="center"
android:textColor="#ffffffff"
android:textSize="30sp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:id="@+id/nameEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_weight="1"
android:backgroundTint="#ffffffff"
android:ems="10"
android:hint="Name"
android:inputType="textPersonName"
android:textColorHint="#95ffffff" />
<EditText
android:id="@+id/surnameEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_weight="1"
android:backgroundTint="#ffffffff"
android:ems="10"
android:hint="Surname"
android:inputType="textPersonName"
android:textColorHint="#95ffffff" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:0)
热门视图只有margin 10dp
,其余视图都有marginLeft 16dp
。将顶视图的margin
更改为16dp
。