您可以在Android
中通过设置EditText
的属性来控制文本从左边框开始10dp。以下是相关的属性和值:
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
android:layout_width
:设置EditText的宽度为match_parent
,与父视图宽度一致。android:layout_height
:设置EditText的高度为wrap_content
,根据内容自适应。android:textAlignment
:设置EditText中文本的对齐方式,这里设置为viewStart
,表示从视图的左边开始对齐。android:textAppearance
:设置EditText中文字的外观样式,这里设置为TextAppearance.AppCompat.Medium
,表示中等大小的字体。通过以上设置,EditText中的文本将会从左边框开始10dp。
领取专属 10元无门槛券
手把手带您无忧上云