1

マーキーを使おうとしていますが、機能しません。コードは次のとおりです...誰かが問題を確認できますか?

 <TextView
        android:id="@+id/lblTitle" 

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

        android:layout_width="140dp"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginLeft="15dp"
        android:gravity="center"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:text="Book Title"
        android:textColor="#FFFFFF"
        android:textSize="12dp" />

実行時にこのテキストビューのテキストを設定します。このリンクのコードを使用します TextViewMarqueeが機能していません

4

6 に答える 6

13

単純なtextviewマーキーのコードは問題ないので、この方法をurアクティビティで実行してください。

TextView textview=(TextView)findViewById(R.id.lblTitle);
textview.setSelected(true); 

そして、アダプタのリストビューでマーキーを使用したい場合は、リストビューのマーキーで与えられた回答を確認してください。

于 2012-06-28T07:37:07.420 に答える
4
working on my phone 

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/lblTitle" 

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

            android:layout_width="140dp"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="15dp"
            android:gravity="center"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"
            android:text="Book Title sad ds sdas das asdas das asd asd sad as"
            android:textColor="#FFFFFF"
            android:textSize="12dp" />
    </LinearLayout>

ここに画像の説明を入力してください

于 2012-06-28T07:35:19.360 に答える
3

このコードはあなたのために働いています。

<TextView
    android:text="START | lunch 20.00 | Dinner 60.00 | Travel 60.00 | Doctor 5000.00 | lunch 20.00 | Dinner 60.00 | Travel 60.00 | Doctor 5000.00 | END"
    android:id="@+id/MarqueeText" android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:singleLine="true"
    android:ellipsize="marquee" android:marqueeRepeatLimit="marquee_forever"
    android:scrollHorizontally="true" 
    android:paddingLeft="15dip" 
    android:paddingRight="15dip" 
    android:focusable="true" 
    android:focusableInTouchMode="true" 
    android:freezesText="true">
</TextView>

ありがとう。

于 2012-06-28T07:29:59.437 に答える
1

このコードは機能します

<TextView
android:text="A very long book title"
android:id="@+id/book_title" 
android:layout_width="fill_parent"
android:layout_height="wrap_content" 
android:singleLine="true"
android:ellipsize="marquee" 
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true" 
android:paddingLeft="15dip" 
android:paddingRight="15dip" 
android:focusable="true" 
android:focusableInTouchMode="true" 
android:freezesText="true">
于 2013-09-10T10:10:26.780 に答える
1

私は同じ問題に遭遇しました。カーンの答えは正しいですが、textview.setSelected(true); テキストビューが常にフォーカスを取得できない場合は機能しません。したがって、TextView Marqueeが機能することを確認するには、カスタムTextViewを使用する必要がありました。

public class CustomTextView extends TextView {
    public CustomTextView(Context context) {
        super(context);
    }
    public CustomTextView(Context context, AttributeSet attrs) {
        super(context, attrs);

    }

    public CustomTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);

    }


    @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;
    }
}

次に、次のように、カスタムTextViewをレイアウト.xmlファイルのスクロールテキストビューとして使用できます。

<com.example.myapplication.CustomTextView
            android:id="@+id/tvScrollingMessage"
            android:text="@string/scrolling_message_main_wish_list"
            android:singleLine="true"
            android:ellipsize="marquee"
            android:marqueeRepeatLimit ="marquee_forever"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:scrollHorizontally="true"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:background="@color/black"
            android:gravity="center"
            android:textColor="@color/white"
            android:textSize="15dp"
            android:freezesText="true"/>

注:上記のコードスニペットでは、com.example.myapplicationはパッケージ名の例であり、独自のパッケージ名に置き換える必要があります。

これがお役に立てば幸いです。乾杯!

于 2016-04-16T10:46:15.383 に答える
0

このコード行は100%機能しています。これらの行をtextview xmlコード内に配置するだけで、機能が開始されます。

 android:singleLine="true" 
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true" 
于 2016-10-03T11:49:29.600 に答える