你好傢伙我想到了一個特定的設計,我想在我的android應用程序中實現,但它對我來說很難想出辦法做到這裏是我的尋找。如何自定義設計android編輯文本
<LinearLayout
android:background="#C5CAE9"
android:layout_width="match_parent"
android:layout_height="30dp"
android:orientation="horizontal">
<android.support.design.widget.TextInputLayout
android:padding="5dp"
android:layout_width="0dp"
android:layout_weight="1"
android:background="#3F51B5"
android:layout_height="match_parent">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/form_username"/>
`
哪一部分是困難的? – bc004346