我的fork in test := true
小部件似乎在左侧填充,但它们与上面的文本不对齐。这是正常的吗?有没有办法让它齐平?
这是我的XML:
EditText
感谢。
答案 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"
>