Layout

      在〈Layout〉中尚無留言

Android 的畫面佈局(Layout) 其實蠻複雜的,這可能要分好幾篇來說明

EditText

EditText 可以在方框內輸入文字。

Android 12 必需要有 hint ,否則會出現 <EditText>: No speakable text present 的錯誤訊息。

inputType 是指要彈出的鍵盤格式,有 date, number, numberPassword, text 等多種格式。

另外height 要大於 48dp,否則會出現 touch target size too small。

<EditText
android:id="@+id/editPassword"
android:layout_width="200dp"
android:layout_height="48dp"
android:background="#9999ff"
android:hint="密碼必填"
android:inputType="textPassword" />

todo

todo

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *