We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cafceb commit 17c92d6Copy full SHA for 17c92d6
README.md
@@ -30,14 +30,14 @@ Use it via xml
30
android:layout_marginBottom="16dp"
31
android:maxLines="3"
32
android:textColor="@android:color/black"
33
- app:ellipsizeColor="@android:color/holo_green_dark"
+ app:ellipsizeColor="@android:color/white"
34
app:ellipsizeText="...More"/>
35
```
36
37
Or you can make the same via code
38
39
40
-textView.setEllipsizeColor(ContextCompat.getColor(this, android.R.color.white));
+textView.setEllipsizeColor(ContextCompat.getColor(context, android.R.color.white));
41
textView.setEllipsizeText("...More", Typeface.BOLD); // Yeah, you can change ellipsize textStyle ;)
42
43
0 commit comments