TextView的marquee异常一例
分类:Android, Java
阅读 (1,004)
Add comments
4月 122017
部局的xml如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:baselineAligned="false"> <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="3" android:orientation="vertical" android:padding="10dp"> <TextView android:id="@+id/tvSongName" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="10dp" android:ellipsize="marquee" android:focusable="auto" android:focusableInTouchMode="true" android:text="光辉岁月" android:textSize="18sp" android:textStyle="bold" /> <TextView android:id="@+id/tvSinger" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:layout_weight="1" android:ellipsize="end" android:text="演唱:Beyond" /> <TextView android:id="@+id/tvAlbum" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:layout_weight="1" android:ellipsize="end" android:text="专辑:光辉岁月" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center_vertical" android:orientation="horizontal"> <TextView android:id="@+id/tvPlayPosition" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5dp" android:text="00:00" /> <ProgressBar android:id="@+id/progressBar2" style="?android:attr/progressBarStyleHorizontal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" /> <TextView android:id="@+id/tvDuration" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:text="00:00" /> </LinearLayout> </LinearLayout> <LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="2" android:orientation="horizontal"> <ImageView android:id="@+id/imgCover" android:layout_width="match_parent" android:layout_height="match_parent" android:adjustViewBounds="true" android:minWidth="150dp" android:minHeight="150dp" android:scaleType="centerInside" android:src="@drawable/default_cover" /> </LinearLayout> </LinearLayout> |
部局的预览图如下
音乐标题(光辉岁月)的ellipsize属性为marquee,当设置专辑下面的当前播放进度的文本时音乐标题的marquee总是重新播放,应该是进度TextView的文本改变影响了父级的LinearLayout(按道理来说不应该影响的)。
解决办法:为父级的LinearLayout增加android:baselineAligned=”false”属性