-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
黄世杰
authored and
黄世杰
committed
Sep 7, 2017
1 parent
b7ef07c
commit 72edcd3
Showing
10 changed files
with
162 additions
and
156 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- android:shape指定形状类型,默认为rectangle --> | ||
<!-- 矩形边框圆角 --> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
android:shape="rectangle" | ||
android:useLevel="true"> | ||
|
||
<size android:height="100dp" | ||
android:width="100dp"/> | ||
|
||
<!-- solid指定形状的填充色,只有android:color一个属性 --> | ||
<solid android:color="#2F90BD" /> | ||
<!-- padding设置内容区域离边界的间距 --> | ||
<padding | ||
android:bottom="12dp" | ||
android:left="12dp" | ||
android:right="12dp" | ||
android:top="12dp" /> | ||
<!-- corners设置圆角,只适用于rectangle --> | ||
<corners android:radius="200dp" /> | ||
<solid android:color="#e00c19a9" /> | ||
|
||
<corners android:bottomLeftRadius="2dp" | ||
android:bottomRightRadius="2dp" | ||
android:topLeftRadius="2dp" | ||
android:topRightRadius="2dp" /> | ||
|
||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- android:shape指定形状类型,默认为rectangle --> | ||
<!-- 矩形边框圆角 --> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
android:shape="rectangle" | ||
android:useLevel="true"> | ||
|
||
<size android:height="100dp" | ||
android:width="100dp"/> | ||
|
||
<!-- solid指定形状的填充色,只有android:color一个属性 --> | ||
<solid android:color="#52a149ed" /> | ||
<!-- padding设置内容区域离边界的间距 --> | ||
<padding | ||
android:bottom="12dp" | ||
android:left="12dp" | ||
android:right="12dp" | ||
android:top="12dp" /> | ||
<!-- corners设置圆角,只适用于rectangle --> | ||
<corners android:radius="200dp" /> | ||
<solid android:color="#afb611a6" /> | ||
|
||
<corners android:bottomLeftRadius="2dp" | ||
android:bottomRightRadius="2dp" | ||
android:topLeftRadius="2dp" | ||
android:topRightRadius="2dp" /> | ||
|
||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.