zoukankan      html  css  js  c++  java
  • android EditText内嵌图片

    如下所示:

    主要用到的属性:android:drawableLeft

    <EditText 
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:drawableLeft="@drawable/ic_user_name"
            android:background="@drawable/shape_input"
            android:maxLength="18"
            android:singleLine="true"
            android:hint="输入用户名"/>

    shape_input.xml

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" 
        android:shape="rectangle">
        <solid android:color="#FFFFFF"/>
        <stroke android:width="1dp" android:color="#666666"/>
        <corners android:radius="3dp"/>
        <padding android:left="2dp" android:right="2dp"
                     android:top="3dp" android:bottom="3dp"/>
    </shape>

  • 相关阅读:
    UVa-129
    UVa-524
    有点迷茫
    北邮之行~
    UVa-253
    心累--期末考试成绩
    UVa-220 Othello
    UVa-201 Squares
    UVA-1589 Xiangqi
    UVa-213 Message Decoding
  • 原文地址:https://www.cnblogs.com/yshyee/p/3379878.html
Copyright © 2011-2022 走看看