我在ArrayList&中列出了我的朋友。我试图使用ArrayAdapter& amp; 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"
>
现在我想为它添加选框效果。我想永远滚动这个listview。 为此,我添加了以下代码
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效果。
我不知道为什么?
答案 0 :(得分:1)
android:ellipsize="marquee"
android:gravity="left"
android:lines="1"
android:scrollHorizontally="true"
android:不推荐使用singleLine,可以关注 - 不需要
此布局适用于新的示例项目:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:paddingLeft="15dip"
android:paddingRight="15dip"
android:scrollHorizontally="true"
android:text="12312312321321312312321321312311321321321312321312312123132132132" />
</RelativeLayout>