我在 ArrayList 中有我的朋友列表,我正在尝试使用 ArrayAdapter 和 rowlayout.xml 在列表视图中显示它
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:id="@+id/rowlayout"
android:padding="10dp"
>
现在我想给它添加选框效果。我想永远滚动这个列表视图。为此,我添加了以下代码
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:freezesText="true"
android:marqueeRepeatLimit="marquee_forever"
android:paddingLeft="15dip"
android:paddingRight="15dip"
android:scrollHorizontally="true"
android:singleLine="true"
但是这段代码停止了我的 Listview 的 OnLongClickListner 效果。
我不知道为什么?