aboutsummaryrefslogtreecommitdiffstats
path: root/lint
diff options
context:
space:
mode:
Diffstat (limited to 'lint')
-rw-r--r--lint/libs/lint_checks/src/com/android/tools/lint/checks/UseCompoundDrawableDetector.java4
1 files changed, 3 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 a578e19..fb5c159 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
@@ -48,7 +48,9 @@ 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",
+ "handled as a compound drawable.\n" +
+ "\n" +
+ "There's a lint quickfix to perform this conversion in the Eclipse plugin.",
Category.PERFORMANCE,
6,
Severity.WARNING,