반응형
[안드로이드] EditText 모서리 둥글게
우선 drawable 리소스에 가서 이런 xml을 만들어줍니다.
<?xml version="1.0" encoding="utf-8"?>
<!-- res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<solid android:color="#FFFFFF"/>
<corners
android:bottomRightRadius="15dp"
android:bottomLeftRadius="15dp"
android:topLeftRadius="15dp"
android:topRightRadius="15dp"/>
</shape>
그리고 EditText의 background에 해당 drawable을 적용해줍니다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dip"
android:background="@drawable/rounded_edittext" />
</LinearLayout>
[출처 : http://hashcode.co.kr/questions/911/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C-edittext%EC%9D%98-%EB%AA%A8%EC%84%9C%EB%A6%AC%EB%A5%BC-%EB%91%A5%EA%B8%80%EA%B2%8C-%ED%95%A0-%EC%88%98-%EC%97%86%EC%9D%84%EA%B9%8C%EC%9A%94 ]
반응형
'IT > 안드로이드+JAVA' 카테고리의 다른 글
[안드로이드] 커스텀 다이얼로그 예제 (0) | 2016.09.05 |
---|---|
[안드로이드] 이미지 스와이프 (뷰페이저, ViewPager) (0) | 2016.09.02 |
[안드로이드] 체크박스 박스 없애고 이미지 넣기 (0) | 2016.09.02 |
[안드로이드] 외부 글꼴 설정하기, 모든 액티비티에 글꼴 설정하기 (0) | 2016.08.30 |
[안드로이드] glide 라이브러리, 이미지뷰 url gif, 이미지뷰 gif (0) | 2016.08.29 |