我有兩個只包含繪圖的視圖類。我想通過點擊'門'(在特定座標上)將視圖類從一個類更改爲另一個類。如何在android開發中隱藏和顯示自定義視圖?
這裏是我的佈局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<com.example.insidehouse.InsideHouseView
android:id="@+id/insideHouseView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true" />
<com.example.insidehouse.BedRoomView
android:id="@+id/bedRoomView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="false"
android:layout_centerVertical="false" />
</RelativeLayout>