将mapview添加到android中的选项卡中

时间:2012-01-19 16:27:37

标签: android xml map tabs android-mapview

我已在互联网上搜索过教程等,但我还没有提出任何有效的解决方案,所以我可以,为什么不在这里问它?我已设法在选项卡外使用mapviews,但如何在地图选项卡中显示xml?请anser并提前致谢! 我需要在“地图”选项卡上添加一个MapView,我该怎么做?这是我用于选项卡的XML代码:

<?xml version="1.0" encoding="utf-8"?>

<TabHost android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/tabHost"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<TabWidget
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@android:id/tabs"
/>
 <FrameLayout
 android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabcontent"
 >
 <LinearLayout
 android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/tab1"
android:orientation="vertical"
android:paddingTop="60px"
 >
 <TextView  
android:layout_width="fill_parent" 
android:layout_height="100px" 
android:text="My tracks"
android:id="@+id/txt1"
/>

 </LinearLayout>

 <LinearLayout

 android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/tab2"
android:orientation="vertical"
android:paddingTop="60px"
 >
 <TextView  
android:layout_width="fill_parent" 
android:layout_height="100px" 
android:text="Map"
android:id="@+id/txt2"
/>

 </LinearLayout>

  <LinearLayout
 android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/tab3"
android:orientation="vertical"
android:paddingTop="60px"
 >

 <TextView
     android:id="@+id/txt3"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:text="Search for gokart tracks" />


 <LinearLayout
     android:id="@+id/linearLayout1"
     android:layout_width="match_parent"
     android:layout_height="match_parent" >

     <EditText
         android:id="@+id/SearchInput"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_weight="10.05" >

         <requestFocus />
     </EditText>

     <Button
         android:id="@+id/SearchButton"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_weight="1"
         android:text="@android:string/search_go" />

 </LinearLayout>

 </LinearLayout>

 </FrameLayout>

</TabHost>

1 个答案:

答案 0 :(得分:3)

我的项目MapView中有Tab

enter image description here

以下是标签的来源和布局: Tab Source | Tab XML

以下是在Tab中加载的MapView的源代码和布局: Map Source | Map XML

我希望你能为你自己的项目调整这段代码,祝你好运!