如何将通知中的文字内容框选出来?

发布于 2024-12-11 23:58:25 字数 42 浏览 0 评论 0原文

由于文本内容太长,无法在通知中显示,因此被剪切。我能做些什么?请帮忙。

The text content is just too long to be displayed in the notification and it is cut. What can I do? Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

昔日梦未散 2024-12-18 23:58:25

试试这个:

它对我有用,我已经测试过了。

首先创建自定义通知:

如下所示:开发者网站的此链接< /a>.

之后,在您想要选取框的消息的 TextView 中,输入以下行:

 android:ellipsize="marquee"

And It Works as you need。
享受。
希望它能帮助你。
谢谢。

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.

你不是我要的菜∠ 2024-12-18 23:58:25

为通知设置自定义布局。在布局中,使用 TextView 作为通知,然后在 TextView 的 XML 上添加:

android:ellipsize="marquee"

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"
爱格式化 2024-12-18 23:58:25
                    <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" />

删除无用的行并根据您的代码更改 id。

                    <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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文