我试图在listview中填充项目(由ArrayAdapter填充)。
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.tabdemo.Tab2Activity" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:fitsSystemWindows="false"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="1
>
</ListView>
</RelativeLayout>
你们可以看到这个问题不是滚动而且文本显示在几行上。