Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カスタムarrayadapterでリストビューを作成しています..しかし、問題はタブレットにあります.listitemが非常に小さいことを示しています.
リストビューの幅を固定してみてください。対応するレイアウト xml ファイルで行うことができます。そこに次のようなプロパティを追加しますandroid:layout_width="200dp"
android:layout_width="200dp"
この問題を修正するには、静的変数、つまり固定値を削除します。fill_parent、match_parent を使用して動的 xml を作成します。
ありがとう...