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 には、子を 1 つだけ含めることができます。その中に別のレイアウトを入れてから、ビューを入れてください。

于 2013-07-03T09:20:48.640 に答える