您好,登錄后才能下訂單哦!
不知不覺,已經(jīng)上班了好幾天了,為了讓我可以更好的記憶我學(xué)的知識,也為了方便我自己查找資料,所以決定將它寫出來,和大家分享。
安卓自帶的EditText控件,在不同的手機(jī)中顯示的格式有很大的差別,有的只是一條橫線,有的是矩形框,為了統(tǒng)一格式,我們通常需要對其進(jìn)行一些簡單的操作,下面我介紹一種將其設(shè)置為圓角框的方式。
首先需要在drawable中新建一個round_editstyle的xml文件:
zx
?xml version="1.0" encoding="utf-8"?> <!-- 設(shè)置圓角邊框 --> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:padding="10dp" android:shape="rectangle" > <solid android:color="#ff0122" /> <corners android:bottomLeftRadius="30dp" android:bottomRightRadius="30dp" android:topLeftRadius="30dp" android:topRightRadius="30dp" /> </shape>
圓角的弧度可以自己調(diào),我設(shè)置它為30度。之后我們就可以在布局文件中直接在background標(biāo)簽中引用它了:
<EditText android:layout_marginTop="100dp" android:layout_width="fill_parent" android:layout_height="50dp" android:hint="EditTextDemo" android:gravity="center" android:background="@drawable/rounder_editstyle" />
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。