Chromium Code Reviews| Index: blimp/client/app/android/java/res/drawable/dotted_line.xml |
| diff --git a/blimp/client/app/android/java/res/drawable/dotted_line.xml b/blimp/client/app/android/java/res/drawable/dotted_line.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d5a40171f57edf2aab1731cc5497c02c6a922bdd |
| --- /dev/null |
| +++ b/blimp/client/app/android/java/res/drawable/dotted_line.xml |
| @@ -0,0 +1,24 @@ |
| +<?xml version="1.0" encoding="UTF-8"?> |
| +<!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. --> |
| + |
| +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > |
| + |
| +<item android:top="-2dp" android:right="-2dp" android:left="-2dp"> |
|
David Trainor- moved to gerrit
2016/11/03 03:07:54
indent in?
shaktisahu
2016/11/03 18:10:04
Done.
|
| + <shape> |
| + <solid android:color="#FFFFFF" /> |
| + <stroke |
| + android:dashGap="1dp" |
| + android:dashWidth="2dp" |
| + android:width="1dp" |
| + android:color="@color/disabled_text_color" /> |
| + <padding |
| + android:top="5dp" |
| + android:left="5dp" |
| + android:right="5dp" |
| + android:bottom="2dp"/> |
| + </shape> |
| +</item> |
| + |
| +</layer-list> |