@aks-dev/easyui 1.0.27 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
+
android:shape="rectangle">
|
|
4
|
+
<!-- 填充的颜色 -->
|
|
5
|
+
<!--<solid android:color="@android:color/transparent" />-->
|
|
6
|
+
<!-- 设置按钮的四个角为弧形 -->
|
|
7
|
+
<!-- android:radius 弧形的半径 -->
|
|
8
|
+
<corners android:radius="4dp" />
|
|
9
|
+
<!--边框的宽度及颜色-->
|
|
10
|
+
<stroke android:width="2px" android:color="#CCCCCC" />
|
|
11
|
+
</shape>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
+
android:shape="rectangle">
|
|
4
|
+
<!-- 填充的颜色 -->
|
|
5
|
+
<solid android:color="#EA6561" />
|
|
6
|
+
<!-- 设置按钮的四个角为弧形 -->
|
|
7
|
+
<!-- android:radius 弧形的半径 -->
|
|
8
|
+
<corners android:radius="4dp" />
|
|
9
|
+
<!--边框的宽度及颜色-->
|
|
10
|
+
<!--<stroke android:width="2px" android:color="#388e3c" />-->
|
|
11
|
+
</shape>
|
|
Binary file
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
android:id="@+id/btn_comfirm"
|
|
33
33
|
android:layout_width="200dp"
|
|
34
34
|
android:layout_height="35dp"
|
|
35
|
-
android:textColor="
|
|
35
|
+
android:textColor="#ffffff"
|
|
36
36
|
android:background="@drawable/update_confirm_btn"
|
|
37
37
|
android:text="立即升级"
|
|
38
38
|
style="?android:attr/borderlessButtonStyle" />
|