修改默认值
parent
2bb058c4d7
commit
7f209f15c0
@ -0,0 +1,5 @@
|
|||||||
|
<vector android:height="24dp" android:tint="#000000"
|
||||||
|
android:viewportHeight="24" android:viewportWidth="24"
|
||||||
|
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<path android:fillColor="@android:color/white" android:pathData="M7,10l5,5 5,-5z"/>
|
||||||
|
</vector>
|
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item>
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<solid android:color="@android:color/white" />
|
||||||
|
<corners android:radius="2.5dp" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
<item android:right="64dp">
|
||||||
|
<bitmap
|
||||||
|
android:gravity="right|center_vertical"
|
||||||
|
android:src="@drawable/ic_spinner" />
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item
|
||||||
|
android:left="-2dp"
|
||||||
|
android:right="-2dp"
|
||||||
|
android:top="-2dp">
|
||||||
|
<shape>
|
||||||
|
<stroke
|
||||||
|
android:width="1dp"
|
||||||
|
android:color="#008577" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
@ -1,12 +1,15 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
style="?android:attr/spinnerDropDownItemStyle"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="?attr/dropdownListPreferredItemHeight"
|
android:layout_height="?attr/dropdownListPreferredItemHeight"
|
||||||
android:padding="0dp"
|
|
||||||
android:textSize="12sp"
|
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
|
android:gravity="left|center_vertical"
|
||||||
android:layout_marginLeft="2dip"
|
android:layout_marginLeft="2dip"
|
||||||
android:layout_marginRight="5dip"
|
android:layout_marginRight="5dip"
|
||||||
android:ellipsize="marquee"
|
android:ellipsize="marquee"
|
||||||
android:textColor="#000000">
|
android:background="@drawable/textview_underline"
|
||||||
|
android:drawableRight="@drawable/ic_spinner"
|
||||||
|
>
|
||||||
</TextView>
|
</TextView>
|
||||||
|
Loading…
Reference in New Issue