我有Activity
作为音乐播放器。启动时,MediaPlayer
对象将被初始化并启动。在布局中,我有TextViews
来显示艺术家和标题。那些值(从服务器检索)可能很长,所以我添加了
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
使文本滚动。有一个奇怪的问题:当我按下"暂停"按钮,TextViews
正在滚动,但在播放音乐时,他们不会滚动。有任何想法吗?
P.S。我使用SeekBar
每500毫秒更新Runnable
,问题可能与此相关吗?
这是我的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:gravity="center_vertical"
tools:context=".MainActivity" >
<LinearLayout
android:id="@+id/main_header"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentTop="true"
android:orientation="horizontal" >
</LinearLayout>
<ImageView
android:id="@+id/imgCoverArt"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_below="@+id/main_header"
android:layout_centerHorizontal="true"
android:layout_marginBottom="15dp"
android:layout_marginTop="20dp"
android:src="@drawable/cover_default" />
<SeekBar
android:id="@+id/seekBarMain"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/imgCoverArt"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="10dp"
android:paddingLeft="9dp"
android:paddingRight="9dp"
android:progressDrawable="@drawable/pb"
android:thumb="@drawable/pbhead" />
<TextView
android:id="@+id/tvArtist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/seekBarMain"
android:layout_centerHorizontal="true"
android:layout_marginTop="35dp"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF" />
<TextView
android:id="@+id/tvTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tvArtist"
android:layout_centerHorizontal="true"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#FFFFFF" />
<TextView
android:id="@+id/tvTimeElapsed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/seekBarMain"
android:layout_alignLeft="@+id/seekBarMain"
android:layout_marginBottom="-10dp"
android:text="02:54"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#FFFFFF" />
<TextView
android:id="@+id/tvTotalTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/seekBarMain"
android:layout_alignRight="@+id/seekBarMain"
android:layout_marginBottom="-10dp"
android:text="05:45"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#FFFFFF" />
<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dp"
android:gravity="center_horizontal"
android:orientation="horizontal" >
<Button
android:id="@+id/btnPrevious"
android:layout_width="100dp"
android:layout_height="40dp"
android:layout_gravity="center_vertical"
android:layout_marginRight="6dp"
android:background="@drawable/prev_btn_state" />
<Button
android:id="@+id/btnPlay"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_gravity="center_vertical"
android:background="@drawable/button_play" />
<Button
android:id="@+id/btnNext"
android:layout_width="100dp"
android:layout_height="40dp"
android:layout_gravity="center_vertical"
android:layout_marginLeft="3dp"
android:background="@drawable/next_btn_state" />
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:2)
<TextView
android:text="Single-line text view that scrolls automatically if the text is too long to fit in the widget"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
添加你的TextView,
android:focusable="true"
android:focusableInTouchMode="true"
需要自动滚动。
GitHub中有更多例子。
https://github.com/FireZenk/FireZenk-s-TickerText
希望这会对你有所帮助。
答案 1 :(得分:0)
您可以使用onCreate
方法尝试此操作。
yourTexView.setMovementMethod(new ScrollingMovementMethod());
我也遇到了完全相同的问题。解决了这个问题。