カスタムリストビューのスクロールにあるテキストビューを作成しようとしています。
<?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 と一緒に、リストビュー スクロールにないテキストビューを設定します。
解決策はありますか?ありがとう