私のログイン画面はこのようにロックされます
そのコードで
<TextView
android:id="@+id/login_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="20dp"
android:text="@string/login_label_text" />
<EditText
android:id="@+id/username"
android:layout_width="@dimen/textfield_width"
android:layout_height="@dimen/textfield_height"
android:background="@drawable/textfeld"
android:ems="10" >
<requestFocus />
</EditText>
<TextView
android:id="@+id/login_password_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/password" />
<EditText
android:id="@+id/login_password"
android:layout_width="@dimen/textfield_width"
android:layout_height="@dimen/textfield_height"
android:background="@drawable/textfeld"
android:inputType="textPassword" />
実際には、最初の文字は edittextfield の左端から直接始まります。テキストボックスの最初の文字と左の境界線の間に少しパディングがあるようにするオプションはありますか?
ありがとう