有许多textview可能有非常长的文本已经完成
android:marqueeRepeatLimit="marquee_forever"
android:ellipsize="marquee"
android:singleLine="true"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
对于第一个文本视图,它工作正常,但对于其他它不起作用,如果有人为活动中的其他textview做了那么请帮助我。
谢谢。
答案 0 :(得分:7)
使用TextView扩展您的类非常容易,并覆盖以下方法
package com.az.app;
import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.TextView;
public class ScrollingTextView extends TextView {
public ScrollingTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public ScrollingTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public ScrollingTextView(Context context) {
super(context);
}
// ===========================================================
// Constants
// ===========================================================
// ===========================================================
// Fields
// ===========================================================
// ===========================================================
// Constructors
// ===========================================================
// ===========================================================
// Getter & Setter
// ===========================================================
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
@Override
protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
if (focused)
super.onFocusChanged(focused, direction, previouslyFocusedRect);
}
@Override
public void onWindowFocusChanged(boolean focused) {
if (focused)
super.onWindowFocusChanged(focused);
}
@Override
public boolean isFocused() {
return true;
}
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
}
并在您的XML中执行此操作
<com.az.app.ScrollingTextView
android:id="@+id/TextView02"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/ImageView01"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="This is a really very very very very very long text "
android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout>
<com.az.app.ScrollingTextView
android:id="@+id/TextView03"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/ImageView01"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="This is a really very very very very very long text "
android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout>
现在所有的文字视图都会滚动。
<强>更新强>
请注意,没有android:singleLine="true"
它不起作用。
与android:maxLines="1"
一起使用,虽然我们知道它已被弃用。
答案 1 :(得分:0)
@Sathish是的你可以,我已经完成了。以下是我在xamarin.android中的两个字幕文本视图的代码
XML
<TextView
android:text=""
android:singleLine="true"
android:background="#cc2900"
android:ellipsize="marquee"
android:textColor="#FFFFFF"
android:textSize="15dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:layout_marginLeft="1dp"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:id="@+id/TextView03"
android:padding="5dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
android:text=""
android:singleLine="true"
android:background="#cc2900"
android:ellipsize="marquee"
android:textColor="#FFFFFF"
android:textSize="15dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:layout_marginLeft="1dp"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:id="@+id/txtinternational"
android:padding="5dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
在您的活动中,您只需将焦点设置为所有文字视图:
TextView shorts = FindViewById<TextView>(Resource.Id.TextView03);
shorts.Selected = true;
TextView internationalshorts = FindViewById<TextView>(Resource.Id.txtinternational);
internationalshorts.Selected = true;