diff options
author | Andrew Lee <anwlee@google.com> | 2015-03-06 15:17:44 -0800 |
---|---|---|
committer | Andrew Lee <anwlee@google.com> | 2015-03-11 11:43:28 -0700 |
commit | 616b7f2c33a4294e100cc1851a012cd04ac3500d (patch) | |
tree | 46b280de9f7478563bc20781795f32d6c3129634 | |
parent | 13221cc931efce402bf6277f82a85f3f3395a4ef (diff) |
Fix break, add drawables.
These were originally forgotten to be git-added, then were but
were never uploaded. So, it compiled locally because the files
existed, but broke when it was submitted.
Change-Id: If46153336d2a49eef69e76b5213b1db5881a269a
-rw-r--r-- | res/drawable/tab_contacts.xml | 30 | ||||
-rw-r--r-- | res/drawable/tab_recents.xml | 30 | ||||
-rw-r--r-- | res/drawable/tab_speed_dial.xml | 30 |
3 files changed, 90 insertions, 0 deletions
diff --git a/res/drawable/tab_contacts.xml b/res/drawable/tab_contacts.xml new file mode 100644 index 000000000..ed3f86b9b --- /dev/null +++ b/res/drawable/tab_contacts.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2014 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="@color/tab_ripple_color"> + + <item> + <bitmap android:src="@drawable/ic_people_24dp" + android:gravity="center" /> + </item> + + <item android:id="@android:id/mask"> + <color android:color="@android:color/white" /> + </item> + +</ripple> diff --git a/res/drawable/tab_recents.xml b/res/drawable/tab_recents.xml new file mode 100644 index 000000000..b1a531840 --- /dev/null +++ b/res/drawable/tab_recents.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2014 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="@color/tab_ripple_color"> + + <item> + <bitmap android:src="@drawable/ic_schedule_24dp" + android:gravity="center" /> + </item> + + <item android:id="@android:id/mask"> + <color android:color="@android:color/white" /> + </item> + +</ripple> diff --git a/res/drawable/tab_speed_dial.xml b/res/drawable/tab_speed_dial.xml new file mode 100644 index 000000000..c9c4820b3 --- /dev/null +++ b/res/drawable/tab_speed_dial.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2014 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + android:color="@color/tab_ripple_color"> + + <item> + <bitmap android:src="@drawable/ic_grade_24dp" + android:gravity="center" /> + </item> + + <item android:id="@android:id/mask"> + <color android:color="@android:color/white" /> + </item> + +</ripple> |