EditText之自定義邊框顏色
創(chuàng)新互聯(lián)建站是一家集網(wǎng)站建設,閔行企業(yè)網(wǎng)站建設,閔行品牌網(wǎng)站建設,網(wǎng)站定制,閔行網(wǎng)站建設報價,網(wǎng)絡營銷,網(wǎng)絡優(yōu)化,閔行網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。有倆種方式可以達到效果
一種是網(wǎng)上比較推崇的用圖作背景,另一種則是自繪
圖作背景的:
首先重新定義一個style。在values文件夾下新建一個style.xml文件:
接下來在drawable里添加my_edittext.xml:內(nèi)容如下
其中editbox_normal為正常情況下的編輯框圖片,editbox_focus為選中下的編輯框圖片
定義好了這兩個文件之后就可以用以下方式使用:
android:text="My EditText" android:layout_width="fill_parent" android:layout_height="wrap_content">
以上用圖做背景的部分是引用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里引用:
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" /> 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下面的目的是設置輸入框內(nèi)部顏色,如果直接設置EditText背景色的話,圓角矩形那不太好處理,如果在onDraw里畫背景色的話,這樣光標就會不顯示,被遮住了 另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
文章名稱:EditText之自定義邊框顏色-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://weahome.cn/article/dchdie.html