ボタンのテキストをスクロールしたいので、このためにボタンのテキストビューを使用しています。レイアウトに以下の属性を設定しました。しかし、それは機能していません。私はこれを使用していRelativeLayout
ます...誰かが私のコードの何が問題なのか教えてもらえますか?
<TextView
android:id="@+id/textView1"
android:text="Single-line text view that scrolls automatically if the text is too long to fit in the widget"
android:layout_width="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:layout_height="wrap_content"/>
私は解決策を得て、これを共有しています...私はクラスを作成しました
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);
}
@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
画面上でスクロールするために1つ以上必要だったので...次のlayout.xml
ファイルではこれを使用しました...。
<com.yourpackage.ScrollingTextView
android:id="@+id/TextView01"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:padding="5dip"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="1.option" />
そして出来上がり....それは終わった