我有一个 Gridveiew。在我通过的 GridView 的 getView 中,一个 RelativeLayout(包含图像视图和文本视图作为其子项)。我希望 textview 的文本水平滚动,因为它太长了。这是我的xml。但 textview 不滚动
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false">
<ImageView
android:id="@+id/theme_preview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY" />
<TextView
android:id="@+id/theme_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/theme_preview"
android:layout_centerHorizontal="true"
android:lines="1"
android:ellipsize="marquee"
android:scrollHorizontally="true"
android:marqueeRepeatLimit="marquee_forever"
/>
</RelativeLayout>