2つの質問があります:
1)この方法でいくつかのTextViewを作成しました
<TextView
android:id="@+id/listaNumeriTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="#CCCCCC"
android:gravity="center"/>
setText()を呼び出すと、テキストの長さに応じてTextViewのサイズが変わります。invalidate()を呼び出そうとしましたが、それでも同じ問題が発生します。どうすれば解決できますか?
2)画面サイズに合わせてTextViewの幅を設定できると思いました。たとえば、同じ行に2つのTextViewがある場合、このtextViewSize = screenSize/2を実行できます。これはビュー幅を設定する正しい方法ですか?