The text content is just too long to be displayed in the notification and it is cut. What can I do? Please help.
Try this:
it Works for me, I have tested it.
First Create the Custom Notification :
as Shown here: This Link of the developer site.
After that in TextView of message you want to marquee, put this line:
android:ellipsize="marquee"
And It Works as you want. Enjoy. Hope it will help you. Thanks.
Set up a Custom Layout for the Notification. In the Layout, use a TextView for the Notification, then on the XML for the TextView, add in:
android:ellipsize="marquee"
<TextView
android:id="@+id/place"
android:layout_toRightOf="@+id/line1"
android:clickable="true"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:gravity="bottom"
android:lines="1"
android:marqueeRepeatLimit="marquee_forever"
android:paddingLeft="4dip"
android:scrollHorizontally="true"
android:textColor="#00BFFF"
android:textSize="18dip" />
Delete any useless line and change the id according to ur code.