diff options
Diffstat (limited to 'lint/libs/lint_checks/src')
-rw-r--r-- | lint/libs/lint_checks/src/com/android/tools/lint/checks/UseCompoundDrawableDetector.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lint/libs/lint_checks/src/com/android/tools/lint/checks/UseCompoundDrawableDetector.java b/lint/libs/lint_checks/src/com/android/tools/lint/checks/UseCompoundDrawableDetector.java index 2a32af7..777c4ff 100644 --- a/lint/libs/lint_checks/src/com/android/tools/lint/checks/UseCompoundDrawableDetector.java +++ b/lint/libs/lint_checks/src/com/android/tools/lint/checks/UseCompoundDrawableDetector.java @@ -51,7 +51,8 @@ public class UseCompoundDrawableDetector extends LayoutDetector { "Checks whether the current node can be replaced by a TextView using compound drawables.", // TODO: OFFER MORE HELP! "A LinearLayout which contains an ImageView and a TextView can be more efficiently " + - "handled as a compound drawable.\n" + + "handled as a compound drawable. If the two widgets are offset from each other with " + + "margins, this can be replaced with a drawablePadding attribute.\n" + "\n" + "There's a lint quickfix to perform this conversion in the Eclipse plugin.", Category.PERFORMANCE, |