为了账号安全,请及时绑定邮箱和手机立即绑定

如果要做第三个走马灯效果的一行文字,该怎么做?

如果要做第三个走马灯效果的一行文字,因为第二个textview没有id,是layout_below="@+id/textview1",所以如果有第三个,该怎么设置?

正在回答

1 回答

<com.example.lenovo.textview.MarqueeText
   android:id="@+id/textview1"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/text_view1"
   android:singleLine="true"
   android:ellipsize="marquee"
   android:focusable="true"
   android:focusableInTouchMode="true"/>
<com.example.lenovo.textview.MarqueeText
   android:id="@+id/textview2"
   android:layout_below="@id/textview1"
   android:layout_marginTop="10dp"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/text_view2"
   android:singleLine="true"
   android:ellipsize="marquee"
   android:focusable="true"
   android:focusableInTouchMode="true"/>
<com.example.lenovo.textview.MarqueeText
   android:id="@+id/textview3"
   android:layout_below="@id/textview2"
   android:layout_marginTop="10dp"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/text_view2"
   android:singleLine="true"
   android:ellipsize="marquee"
   android:focusable="true"
   android:focusableInTouchMode="true"/>

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第一门课(入门篇)
  • 参与学习       312585    人
  • 解答问题       4633    个

想快速掌握Android应用开发基础,选择学习这门课程就对了。

进入课程

如果要做第三个走马灯效果的一行文字,该怎么做?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信