私の文章をポストhereとしてスクロールしています。Androidでは、スクロールしているテキストビューがスクロールしていません。
Javaコードがなくても別のレイアウトで初めてスクロールしているのが分かりました。 今、それはもはやスクロールしていません。これに何が間違っているのか分かりません。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="?attr/actionBarSize">
<LinearLayout
android:id="@+id/scrollingTextLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="#0792B5"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:id="@+id/scrollingText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:maxLines="1"
android:padding="5dp"
android:scrollHorizontally="true"
android:text="The culture of India is the way of living of people of India."
android:textColor="#FFFFFF"
android:textSize="16sp" />
</LinearLayout>
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/scrollingTextLayout"
android:background="@android:color/darker_gray" />
</RelativeLayout>
レイアウトの幅をandroid:layout_width = "wrap_content"に設定してから、 – Pavya
を実行してください。同じ。まだスクロールしていません。 –
あなたのコードで 'textView.setSelected(true)'を試してください。あなたはXMLのtextviewにアンドロイド:singleLine = "true"を追加してみてください。onCreateViewのTextViewにフォーカスを合わせてみてください。(source):[リンク](http://stackoverflow.com/a/3333855/5373110) – Meet