<LinearLayout
android:id ="@+id/citylist_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="热门城市"
/>
<ListView
android:id="@+id/hotcitylist"
android:layout_width="fill_parent"
android:layout_height="200dip" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="全国"
/>
<ListView
android:id="@+id/allcitylist"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
<LinearLayout
android:id ="@+id/localmap_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="已下载城市 "
/>
<ListView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/localmaplist"
/>
</LinearLayout>
LinearLayout cl = (LinearLayout)findViewById(R.id.citylist_layout);
LinearLayout lm = (LinearLayout)findViewById(R.id.localmap_layout);
lm.setVisibility(View.GONE);
cl.setVisibility(View.VISIBLE);