android source

text prompted box input

리오파파 2024. 3. 28. 18:32

 

<com.google.android.material.textfield.TextInputLayout
    android:id="@+id/t_nick_name"
    android:textColorHint="@color/appHint"
    app:boxStrokeColor="@color/colorAccent"
    app:hintTextColor="@color/appHint"
    app:boxBackgroundColor="@color/appBack"
    android:layout_margin="3dp"
    android:layout_width="0dp"
    android:layout_weight="5"
    android:layout_height="wrap_content"
    android:hint="Nick Name or @ to ignore"
    >
    <com.google.android.material.textfield.TextInputEditText
        android:id="@+id/e_nick_name"
        android:textColor="#000"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>

'android source ' 카테고리의 다른 글

image 를 rounding 으로 표시  (0) 2024.04.28
Menu icon 간격 적게 하는 법  (0) 2024.04.26
toolbar menu width adjust  (0) 2024.03.03
imageview with rounded corner  (0) 2023.12.19
Google File Async Download  (0) 2023.12.17