0

我正在尝试使自定义列表视图中的文本视图滚动。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:descendantFocusability="blocksDescendants"
android:orientation="horizontal"
android:padding="10dp" >

<TextView
    android:id="@+id/listview_patientname"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginTop="26dp"
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:hint="Patient Name"
    android:marqueeRepeatLimit="marquee_forever"
    android:minWidth="120dp"
    android:scrollHorizontally="true"
    android:singleLine="true"
    android:textAppearance="?android:attr/textAppearanceSmall" />

以上是我的 xml 代码,我已将我的列表视图设置为选中。

上面的 xml 以及设置不在列表视图滚动中的文本视图。

有解决办法吗?谢谢

4

1 回答 1

0

尝试使用这个:

    <ScrollView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >

     <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >

      </RelativeLayout>
   </ScrollView>

ScrollView 只能包含一个孩子。所以在其中放置另一个布局,然后放置您的视图。

于 2013-07-03T09:20:48.640 回答