最初に、私はGoogle検索を行い、 StackOverFlowのテキストをTextView
のために切り捨てて質問しました。彼らは特定のことをよりよく理解することはできたが、問題の解決には役立たなかった。テーブル行内のTextViewコンテンツが切断される
これは私の問題です。
私はTableLayout
を使用して、2つのテキストフィールドを持つレコードを表示しています。各行には2つのセルがあります。 layout_width
は、すべてのセルでwrap_content
に設定されています。しかし、テキストが複数の行に表示されているにもかかわらず、その複数行テキストのすべての行は最後に切り捨てられます。
<?xml version="1.0" encoding="utf-8"?>
</TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content">
<TableRow>
<TextView
android:text="Notes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/visitation_notes" />
<TextView
android:text="Need to visit again. Visit till the doctor understands the importance of the Test. The problem is, it is very difficult to get appointment for the visit. Still, we need to keep trying till the point reaches to him/her."
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/visitation_notes_value"
android:textAlignment="viewStart"/>
</TableRow>
</TableLayout>
は再び訪問するビュー
Notes.Needを生産しました。医者まで訪問 テストの重要性が消えています。問題は、は非常に難しいです。 〜訪問のための予約を取得します。それでも、私たちはねdを試し続けること までポイントは彼/彼女に達する。太字がカットオフばかりで書かれたテキストを持つ
。
TableLayout
の代わりにLinearLayout
を使用すると問題なく動作します。しかし、その問題は、各行の2番目の列を同じ位置(ハードコーディングなし)から始めることができないことです。
TextView
コンテンツが切断されないようにする方法を教えてください。
ここでは、上記の例で作成されたビューのscreenshotです。
添付スクリーンショット – Rahul
私はスクリーンショットを添付しました。今すぐご確認ください。 –
TableRowの幅と高さはどれくらいですか?私はあなたのコードと私のためにうまく動作しようとしました – Rahul