私はすでに多くのソリューション、maxLine、maxLenght、marqueeAlwaysShowing、マーキー付きの楕円形..フォーカス可能なものを試しました..それを機能させることはできません。
追加のXMLをすべて消去して機能させました。これが私が持っているものです。
<LinearLayout
android:id="@+id/promptDefine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/counterDefinitionName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:clickable="true"
android:onClick="nameCounting"
android:text="@string/nameIt"
android:textColor="@color/count_item_to_be_defined"
/>
</LinearLayout>
では、テキストを10文字に制限するには、テキストビューに何を追加する必要がありますか? しかし、それ以上の場合は最後に「...」を挿入してください。私はすでに次のようなことを試しました:
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
そしてうまくいきませんでした、事前に感謝します!
編集:
おそらく、これを台無しにしているクリック可能な機能の属性ですか?