私のメインレイアウトは3つのビューで構成されています。私はそれを実装する方法がわからないところ私はMysteriousViewビューにラベルを付けます。Androidでオンザフライで私のビューを交換するにはどうすればいいですか?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<TextView
android:id="@+id/TextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<MysteriousView
android:id="@+id/MysteriousView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/TextView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
その後、私は自分の.xml
ファイルで定義されている3つの大きなテーブルの景色を眺めることができます。場合によってはTableView1
をMysteriousView
に表示したい場合があり、TableView2
をMysteriousView
に表示することがあります。
TableView1
は7行5列です。 TableView2
には6行6列があります。 TableView3
は5行5列です。私は活動の生涯にわたって約50の変更を行います。
できるだけ早くオンザフライで交換できるようにしたいと思います。スイッチング時間が100ms未満であれば良いでしょう。
それらをオンザフライで変更するにはどうすればよいですか?
ここにある断片について読む:http://developer.android.com/guide/components/fragments.html –