8

私はLinearLayoutを持っており、2つのTextViewの中には両方ともマーキーがあり、最初にテキストを更新すると、2番目のTextViewがマーキーを再起動します。

            <LinearLayout
                android:id="@+id/panel"
                android:layout_width="320dp"
                android:layout_height="match_parent"
                android:layout_marginLeft="2dp"
                android:layout_marginRight="2dp"
                android:gravity="center_vertical"
                android:orientation="vertical" >

                <TextView
                    android:id="@+id/first"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:ellipsize="marquee"
                    android:gravity="bottom|center_horizontal"
                    android:marqueeRepeatLimit="marquee_forever"
                    android:singleLine="true" />

                <TextView
                    android:id="@+id/second"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:ellipsize="marquee"
                    android:gravity="top|center_horizontal"
                    android:marqueeRepeatLimit="marquee_forever"
                    android:singleLine="true"
                      />
            </LinearLayout>

R.id.firstforとR.id.secondiを設定layout_width="320dp"すると、効果が発生しないことがわかりました。しかし、いくつかの回避策があるように設定したいandroid:layout_width="match_parent"ですか?

私は同様の問題を見つけましたが、解決策はありません: Android、RelativeLayoutは同じRelativeLayoutでImageViewを変更するとMarquee-TextViewを再起動します

4

3 に答える 3

13

私も同様の問題を抱えていました。解決策は、Textviewの固定サイズを設定することです。

では、なぜそれをプロガンマティックにしないのですか?私の場合、それは問題を解決しました。これが私の解決策の詳細です:

レイアウトは少し複雑で、値が大きく変化します。ここに興味深い部分があります:

layout.xml:

<!-- The height and visibility values change programatically -->
<RelativeLayout 
    android:layout_width="fill_parent"
    android:layout_height="30dp" 
    android:layout_alignParentBottom="true"
    android:visibility="gone" >

    <FrameLayout>
        ...
        // some code
        ...
    </FrameLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent" />

        <!-- My scrolling textview. see below. -->
        <!-- The size will be set when -->
        <!-- the layout will be draw, -->
        <!-- after the Activity.onCreate(). -->
        <!-- I removed ALL THE UNECESSARY (I mean  -->
        <!-- scrollHorizontally, focusable and focusableInTouchMode. -->
        <!-- You don't need it !!!!) -->
        <fr.cmoatoto.android.widget.ScrollingTextView 
            android:id="@+id/text"
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:singleLine="true"
            android:ellipsize="marquee"
            android:marqueeRepeatLimit="marquee_forever" />

        <ImageView
            ...
            // some code
            ... />
    </LinearLayout>
</RelativeLayout>

ScrollingTextViewはこの回答で定義されています

ここに再びあります:

ScrollingTextView.java:

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

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

そして最後にアクティビティ。前に述べたように、onCreate()のリスナーを使用してプログラムで行うように、固定の幅と高さを設定する必要があります。

MyActivity.java:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.layout);


    TextView textView = ((TextView) findViewById(R.id.home_trafic_text));
    textView.setText(getString(R.string.loading));
    textView.setEnabled(true); // Thanks to Romain Guy
    textView.addOnLayoutChangeListener(new OnLayoutChangeListener() {
        @Override
        public void onLayoutChange(View v, int left, int top, int right,
                int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
            LayoutParams params = v.getLayoutParams();
            params.width = right - left;
            params.height = bottom - top;
            params.weight = 0;
            v.removeOnLayoutChangeListener(this);
            v.setLayoutParams(params);
        }
    });
}

向きを変える必要がある場合などは注意してくださいが、私にとってはかなりうまくいきます!

----API-11以前の編集---

Api v11からのみ存在するためOnLayoutChangeListener、回避策があります(動作しますが、あまり良くないと思います):

アクティビティからを削除OnLayoutChangeListenerします:

MyActivity.java:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.layout);

    TextView textView = ((TextView) findViewById(R.id.home_trafic_text));
    textView.setText(getString(R.string.loading));
    textView.setEnabled(true); // Thanks to Romain Guy
}

ScrollingTextViewにを追加onSizeChangedします:

ScrollingTextView.java:

public class ScrollingTextView extends TextView {

    ...
    // Same code as before
    ...

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
    super.onSizeChanged(w, h, oldw, oldh);
    LayoutParams params = (LayoutParams) getLayoutParams();
        params.width = w;
        params.height = h;
        params.weight = 0;
        setLayoutParams(params);
    }
}

お役に立てば幸いです。

于 2012-12-12T14:35:19.050 に答える
12

両方のマーキーを同じViewGroupに入れないようにする必要があります。あなたの場合、各マーキーTextViewをLinearLayoutでラップできます(これは、RelativeLayoutを使用している場合は機能しません)。

于 2014-02-05T06:58:30.500 に答える
4

単純な修正..:)それほど心配する必要はありません...テキストビューの幅を800dp以上の幅に修正するだけです。リセットの問題を解決します

于 2016-02-25T17:47:10.437 に答える