Android множественный текстовый шатер - PullRequest
3 голосов
/ 10 декабря 2011

In имеют множество текстовых представлений, которые могут иметь очень длинный текст, поэтому сделали

android:marqueeRepeatLimit="marquee_forever"
    android:ellipsize="marquee"
    android:singleLine="true"
    android:scrollHorizontally="true"
    android:focusable="true"
    android:focusableInTouchMode="true" 

Для первого просмотра текста он работает нормально, но для других он не работает, если кто-то сделал это для другого просмотра текста вактивность, пожалуйста, помогите мне.

Спасибо.

Ответы [ 2 ]

7 голосов
/ 14 января 2014

Очень просто расширить ваш класс с помощью 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", хотя мы знаем, что он устарел.

0 голосов
/ 09 сентября 2017

@ Сатиш Да, ты можешь, я сделал это.Ниже приведен мой код для двух основных текстовых представлений в 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;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...