2 番目の列に長いテキスト行が含まれる可能性があるテーブルがありandroid:layout_width="wrap_content"
、画面の幅に応じてテキストを折り返すように設定しました。ただし、テキストが間違った場所で折り返されているようです。次の行に折り返される前に、画面の右端からコンテンツが外れています。
また、指のスワイプを使用して右または下にスクロールできないようです-それはAndroidプログラムで自動的に実装されていると思いましたか?
Samsung Galaxy SII を使用していますが、エミュレーターでプログラムを実行しても問題が解決しません。
XML ファイルのコード スニペット:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:shrinkColumns="true" >
//Other rows
<TableRow
android:id="@+id/tableRow3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dip" >
<TextView android:text="Faculty: " />
<TextView
android:id="@+id/organization"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"/>
</TableRow>