public class MainActivity extends Activity { WebVIEw myWebVIEw; String mapPath = "https://maps.Google.com/maps"; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); myWebVIEw = (WebVIEw)findVIEwByID(R.ID.mapvIEw); String map2="?q=43.0054446,-87.9678884&t=m&z=7"; myWebVIEw.loadUrl(mapPath+map2); } @OverrIDe public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main,menu); return true; } }
现在我有另一个问题.这是我的xml布局.
<relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"xmlns:tools="http://schemas.androID.com/tools"androID:layout_wIDth="fill_parent"androID:layout_height="fill_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" ><relativeLayout androID:layout_wIDth="wrap_content"androID:layout_height="wrap_content"><TextVIEw androID:ID="@+ID/textvIEw" androID:layout_height="@string/hello_world"/></relativeLayout><relativeLayout androID:layout_wIDth="wrap_content"androID:layout_height="wrap_content"><WebVIEw androID:ID="@+ID/mapvIEw" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" /></relativeLayout>
我想在屏幕的上半部分显示WebVIEw,但是当加载链接时,页面是全屏的(即使我在webvIEw下插入了其他内容).为什么?
解决方法 我刚刚从httpS中删除了S并且它可以工作.我不知道这是否有帮助. 总结以上是内存溢出为你收集整理的Android的webview不会显示谷歌地图全部内容,希望文章能够帮你解决Android的webview不会显示谷歌地图所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)