Change View content in activity dynamically
问题 My abstract class extended from Activity class consists of three View s as described in the following XML snippet: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="@drawable/bg"> <LinearLayout android:id="@+id/top_border"> ... </LinearLayout> <View android:id="@+id/activity_content" ... /> <LinearLayout android