【Android】MapView和其它控件一起显示

阅读更多

很多朋友要实现MapView和其它控件一起显示,但android XML里面declare 就一直报InflateException。。。Inflate。。。打气。。。Exception被爆掉?? 寒~~~

国外达人终于解决此问题,竟然是用来declare,寒~~~android API在干哈?!
main.xml:

xml 代码
 
  1. xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3. android:orientation="vertical" android:layout_width="fill_parent"  
  4. android:layout_height="fill_parent">  
  5.   
  6.         <view class="com.google.android.maps.MapView"  
  7.         android:layout_width="fill_parent"  
  8.         android:layout_height="fill_parent"  
  9.         android:layout_weight="1" />  
  10.           
  11.         <EditText android:layout_width="fill_parent"  
  12. android:layout_height="wrap_content"  
  13.     android:text="输入查询地址"  
  14.     android:selectAllOnFocus="true"/>  
  15. LinearLayout>  


然后写个很简单的MapActivity:

java 代码
 
  1. public class GeoDemo extends MapActivity {  
  2.     @Override  
  3.     public void onCreate(Bundle icicle) {  
  4.         super.onCreate(icicle);  
  5.         setContentView(R.layout.main);  
  6.     }  
  7. }  


结果如图。终于可以自己做相关的Map控件和逻辑了,呵呵!

  • 【Android】MapView和其它控件一起显示_第1张图片
  • 大小: 14.2 KB
  • 查看图片附件

你可能感兴趣的:(Android,Google,XML,Yahoo)