我正在尝试将我的textview放在自定义列表视图中滚动。
<?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以及设置不在listview中的textview滚动。
有解决方案吗?感谢
答案 0 :(得分: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只能包含一个孩子。所以在其中放入另一个布局,然后放置你的观点。