在 Android 布局 xml 文件中,可以执行以下操作...
<EditText android:id="@+id/username"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/username" />
<EditText android:id="@+id/password"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="@string/password" />
这会产生一个如下所示的 GUI:
如何使用 CSS 为 HTML 表单创建相同的效果?