xmlでTextViewを取得しました:
<TextView
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="left"
android:text="TextView"/>
複数のTextViewを作成したいのですが、これと同じように見せたいです。
だから私は試しました:
TextView newTextView = new TextView(this);
newTextView.setLayoutParams(myTextView.getLayoutParams());
これにより、xmlからmyTextView straigthlghly(?)からすべてのレイアウトパラメーターを取得し、それらをnewTextViewに渡して設定する必要があると思います。
私の問題は:何も起こらない。効果がないのはなぜですか?