如何阻止EditText在左侧填充?

时间:2016-04-25 20:36:42

标签: android android-support-library android-design-library

我的fork in test := true 小部件似乎在左侧填充,但它们与上面的文本不对齐。这是正常的吗?有没有办法让它齐平?

编辑:由于不清楚,我说的是“Hello world”和“Title”没有在左边对齐。就像“标题”有额外的填充。 “标题”下的行也在左侧具有相同的额外空间。

这是我的XML:

EditText

enter image description here

感谢。

1 个答案:

答案 0 :(得分:0)

从以下位置删除此行:android:paddingLeft="@dimen/activity_horizontal_margin",删除您要设置的左侧边距:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:orientation="vertical"
    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.hinttest.MainActivity"
    >