画面の一方の端からもう一方の端まで画面の下部で移動するビューを作成する必要があります。新しいチャンネルのように、フラッシュニュースは一番下で連続して動いています。同様のコンセプトが私が欲しいものです。使用するウィジェットがわかりません。フリッパーを試しましたが、1つのテキストビューだけが他のテキストビューに置き換えられています。一方の端からもう一方の端に移動してコンテンツを変更する必要があります。誰か助けてもらえますか?
マーキーを使って以下の答えを試してみましたが、まだ動いていません。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
t = (TextView) findViewById(R.id.label);
t.setSelected(true);
}
// xml
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:text="@string/hello_world"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
/>
機能した。問題は、実際には非常に小さい文字列を指定したことでした(hello world)今、新しい長い文字列を指定しました。