Created
April 1, 2015 01:11
-
-
Save hackugyo/f76cdcb2b87b126fe40e to your computer and use it in GitHub Desktop.
枠っぽいxml
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > | |
| <!-- 外枠 --> | |
| <item android:top="0dp"> | |
| <shape> | |
| <solid android:color="#999999" /> | |
| <corners android:radius="8dp" /> | |
| </shape> | |
| </item> | |
| <!-- 左上の影 --> | |
| <item | |
| android:bottom="6dp" | |
| android:left="5dp" | |
| android:right="6dp" | |
| android:top="5dp"> | |
| <shape> | |
| <solid android:color="#727272" /> | |
| <corners android:radius="8dp" /> | |
| </shape> | |
| </item> | |
| <!-- 右下の光 --> | |
| <item | |
| android:bottom="5dp" | |
| android:left="6dp" | |
| android:right="5dp" | |
| android:top="6dp"> | |
| <shape> | |
| <solid android:color="#B7B7B7" /> | |
| <corners android:radius="8dp" /> | |
| </shape> | |
| </item> | |
| <!-- 中心部 --> | |
| <item | |
| android:bottom="7dp" | |
| android:left="7dp" | |
| android:right="7dp" | |
| android:top="7dp"> | |
| <shape> | |
| <solid android:color="#FFFFFF" /> | |
| <corners android:radius="1dp" /> | |
| </shape> | |
| </item> | |
| </layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment