Blame view

app/src/main/res/drawable/rounded_edittext.xml 525 Bytes
7f095a929   chudinhbka@gmail.com   Create GIT Project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?xml version="1.0" encoding="utf-8"?>
  <shape xmlns:android="http://schemas.android.com/apk/res/android" >
  
      <solid android:color="#FFFFFF" />
  
      <stroke
          android:width="1dp"
          android:color="#2f6699" />
      <corners
          android:topLeftRadius="3dp"
          android:topRightRadius="3dp"
          android:bottomLeftRadius="3dp"
          android:bottomRightRadius="3dp"
          />
  
      <padding android:top="5dp"
          android:bottom="5dp"
          android:left="2dp"
          android:right="2dp"/>
  
  </shape>