Я исправил следующую проблему.Простое изменение.Заменено android:lines="1"
на android:singleLine="true"
.
. В настоящее время мое приложение отображает текст в виджете как Marquee.Он работает как положено во всех ОС Android, кроме версии 4.0.Я тестировал в эмуляторе с уровнем API 14 и текст не прокручивается (Marquee).Ниже приведен макет XML, используемый для отображения текста в эффекте Marquee.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:lines="1"
android:background="@android:color/background_dark"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:textColor="@android:color/white"
android:focusable="true"
android:focusableInTouchMode="true"
android:duplicateParentState="true"
android:textSize="20dp">
<requestFocus android:focusable="true" android:focusableInTouchMode="true"
android:duplicateParentState="true" />
</TextView>
</RelativeLayout>
Помогите мне решить эту проблему.
Заранее спасибо.