0

画面の一方の端からもう一方の端まで画面の下部で移動するビューを作成する必要があります。新しいチャンネルのように、フラッシュニュースは一番下で連続して動いています。同様のコンセプトが私が欲しいものです。使用するウィジェットがわかりません。フリッパーを試しましたが、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)今、新しい長い文字列を指定しました。

4

3 に答える 3

1

あなたはこれを行うことができます。

のxmlTextView

<TextView
    android:id="@+id/label"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:ellipsize="marquee"
    android:marqueeRepeatLimit="marquee_forever"
    android:singleLine="true" />

このためのコードTextView

ティッカーを作成したい場合

textView.setSelected(true);

あなたがそれを止めたいなら

textView.setSelected(false);

**** 編集****** _ _

からアクティビティを拡張していると思いますListActivity。あなたの中で次のことをしてくださいonListItemClick

public void onListItemClick(ListView parent, View row, int position, long id) {

    TextView textViewOne =   (TextView)row.findViewById(R.id.text_view);
    textViewOne.setSelected(true);
    for (int i = 0; i < parent.getChildCount(); i++) {
        if(i!=position){
            View view = (View) parent.getChildAt(i).findViewById(R.id.view);

            textViewOne = (TextView)view.findViewById(R.id.text_view);
            textViewOne.setSelected(false);

        }
    }   
}
于 2013-02-21T11:31:28.673 に答える
1

ただそれをチェックしてください:

xmlファイル:

<TextView

android:id="@+id/myTextView"

android:ellipsize="marquee" 

android:singleLine="true"/>

コードで:

tv = (TextView) findViewById(R.id.myTextView);

tv.setSelected(true);

ここでは、textviewを1行で表示する必要があります

于 2013-02-22T09:45:15.023 に答える
0

私はあなたが何を達成したいのか完全には理解していませんが、どうやらあなたには2つの選択肢があります:

独自のビューを作成します:http://developer.android.com/training/custom-views/index.html

または、アニメーションを作成して既存のビューを使用します:http: //developer.android.com/training/animation/index.html

于 2013-02-21T11:17:43.020 に答える