私は Gridveiew.In を GridView の getView に渡し、RelativeLayout(画像ビューとテキストビューを子として含む)を渡します。textview のテキストが長すぎるため、水平方向にスクロールしたい。これは私のxmlです。しかし、テキストビューはスクロールしません
<?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>