gpt4 book ai didi

android - 当文本太长时,如何使 Google Play 像 TextView 动画一样?

转载 作者:太空宇宙 更新时间:2023-11-03 13:25:23 25 4
gpt4 key购买 nike

在 Google Play 中,当某个标题的名称太长时,当名称从 TextView 的一端出来时,他们会在此 TextView 上应用动画, 从另一端进入,在标题文本的开头停顿一秒钟,然后进入下一轮。

有没有人能解释一下这是如何实现的?

最佳答案

这对我有用,您必须实际请求焦点才能使选取框动画起作用:

  <TextView
android:id="@+id/tvAddress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/tvName"
android:layout_toLeftOf="@+id/ivLogo"
android:text=""
android:textColor="@color/cups_white"
android:textSize="18sp"
android:ellipsize="marquee"
android:singleLine="true"
android:marqueeRepeatLimit ="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:duplicateParentState="true">
<requestFocus
android:focusable="true"
android:focusableInTouchMode="true"
android:duplicateParentState="true" />
</TextView>

关于android - 当文本太长时,如何使 Google Play 像 TextView 动画一样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21169594/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com