中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

EditText之自定義邊框顏色

發布時間:2020-07-09 20:39:06 來源:網絡 閱讀:477 作者:沒有水勒魚 欄目:移動開發

EditText之自定義邊框顏色

有倆種方式可以達到效果

一種是網上比較推崇的用圖作背景,另一種則是自繪

圖作背景的:

  首先重新定義一個style。在values文件夾下新建一個style.xml文件:

       <?xml version="1.0" encoding="utf-8"?>

         <resources>

            <style name="my_edittext_style" parent="@android:style/Widget.EditText">

                <item name="android:background">@drawable/my_edittext</item>

            </style>

         </resources>


 接下來在drawable里添加my_edittext.xml:內容如下

<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_focused="true" android:drawable="@drawable/editbox_focus" />      <item android:drawable="@drawable/editbox_normal" />

</selector>

     其中editbox_normal為正常情況下的編輯框圖片,editbox_focus為選中下的編輯框圖片

 定義好了這兩個文件之后就可以用以下方式使用:

    <EditText

     

      android:text="My EditText"

      android:layout_width="fill_parent"

      android:layout_height="wrap_content">

    </EditText>

   以上用圖做背景的部分是引用http://blog.csdn.net/sinat_31998357/article/details/49491603里的

     PS:圖最好用九宮圖 這樣會自適應的


自繪的方式:

   先自定義一個EditText:


      package com.MyView;

      import android.content.Context;

      import android.graphics.Canvas;

      import android.graphics.Color;

      import android.graphics.Paint;

      import android.graphics.RectF;

      import android.graphics.Paint.Style;

      import android.util.AttributeSet;

      import android.widget.EditText;

      public class MyEditText extends EditText{

         public MyEditText(Context context, AttributeSet attrs) {

            super(context, attrs);

         }

       @Override

       protected void onDraw(Canvas canvas) {


          Paint paint = new Paint();

          paint.setStyle(Style.STROKE);

          paint.setStrokeWidth(2);

          if(this.isFocused() == true)

              paint.setColor(Color.parseColor("#122e29"));

        else

             paint.setColor(Color.rgb(0,173,173));

        canvas.drawRoundRect(new RectF(2+this.getScrollX(), 2+this.getScrollY(), this.getWidth()-3+this.getScrollX(), this.getHeight()+ this.getScrollY()-1), 3,3, paint);

        super.onDraw(canvas);

     }

   }

xml里引用:


    <View

       android:id="@+id/view"

       android:focusable ="true"   

       android:gravity="center"

       android:layout_x = "12dip"

       android:layout_y = "402dip"

       android:layout_width="104dip"

       android:layout_height="46dip"

       android:background = "#fffef9"

    />

    <com.MyView.MyEditText

       android:id="@+id/tv_state"

       android:focusable ="true"   

       android:gravity="center"

       android:layout_x = "10dip"

       android:layout_y = "400dip"

       android:layout_width="110dip"

       android:layout_height="50dip"

       android:background = "#00000000"http://背景透明色

    />

弄一個View在EditText下面的目的是設置輸入框內部顏色,如果直接設置EditText背景色的話,圓角矩形那不太好處理,如果在onDraw里畫背景色的話,這樣光標就會不顯示,被遮住了


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东莞市| 莎车县| 满城县| 万州区| 咸丰县| 清流县| 江川县| 西林县| 公主岭市| 同仁县| 禄丰县| 盖州市| 梁山县| 天津市| 邹城市| 长子县| 大竹县| 周宁县| 诸暨市| 呼玛县| 扎鲁特旗| 富阳市| 敖汉旗| 武夷山市| 蚌埠市| 丰县| 开化县| 辛集市| 宝坻区| 河南省| 澄城县| 靖江市| 纳雍县| 乾安县| 乌审旗| 汝州市| 江达县| 宁陵县| 新营市| 珠海市| 扬中市|