如何修复强制关闭错误在Android应用

问题描述:

我的应用程序必须强制关闭的错误,我不知道如何在这之前的代码修复它如何修复强制关闭错误在Android应用

我的用户,它的作品,但现在有强制关闭错误

如何解决这个力量关闭?

当应用程序要STAT,强制关闭发生

我的xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" > 

<WebView 
    android:id="@+id/wv1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" /> 

<ProgressBar 
    android:id="@+id/pB1" 
    style="?android:attr/progressBarStyleHorizontal" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentTop="true" 
    android:padding="2dip" /> 

我的活动:

package com.microweb.gapiha; 

import android.os.Bundle; 
import android.app.TabActivity; 
import android.content.Intent; 
import android.view.WindowManager; 

import android.widget.TabHost; 


@SuppressWarnings("deprecation") 
public class MainActivity extends TabActivity { 


public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 


     setContentView(R.layout.activity_main); 
     //keep screen on and alive 
     //getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); 
     TabHost mTabHost = getTabHost(); 

     mTabHost.addTab(mTabHost.newTabSpec("aval").setIndicator("social ").setContent(new Intent(this ,IntroActivity.class))); 
     mTabHost.addTab(mTabHost.newTabSpec("dovom").setIndicator("chat").setContent(new Intent(this ,ChatActivity.class)));   
     mTabHost.addTab(mTabHost.newTabSpec("sevom").setIndicator("chat 2 ").setContent(new Intent(this ,RandomActivity.class)));    
     mTabHost.setCurrentTab(0); 

} 

} 

的logcat:

08-07 08:23:03.887: E/StrictMode(646): at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:863) 
08-07 08:23:03.887: E/StrictMode(646): at android.app.ContextImpl.bindService(ContextImpl.java:1418) 
08-07 08:23:03.887: E/StrictMode(646): at android.app.ContextImpl.bindService(ContextImpl.java:1407) 
08-07 08:23:03.887: E/StrictMode(646): at android.content.ContextWrapper.bindService(ContextWrapper.java:473) 
08-07 08:23:03.887: E/StrictMode(646): at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:157) 
08-07 08:23:03.887: E/StrictMode(646): at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:145) 
08-07 08:23:03.887: E/StrictMode(646): at com.android.emailcommon.service.AccountServiceProxy.getDeviceId(AccountServiceProxy.java:116) 
08-07 08:23:03.947: E/StrictMode(646): at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:157) 
08-07 08:23:03.947: E/StrictMode(646): at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:145) 
08-07 08:23:03.947: E/StrictMode(646): at com.android.emailcommon.service.ServiceProxy.test(ServiceProxy.java:191) 
08-07 08:23:03.947: E/StrictMode(646): at com.android.exchange.ExchangeService$7.run(ExchangeService.java:1850) 
08-07 08:23:03.947: E/StrictMode(646): at com.android.emailcommon.utility.Utility$2.doInBackground(Utility.java:551) 
08-07 08:23:03.947: E/StrictMode(646): at com.android.emailcommon.utility.Utility$2.doInBackground(Utility.java:549) 
08-07 08:23:03.947: E/StrictMode(646): at android.os.AsyncTask$2.call(AsyncTask.java:287) 
08-07 08:23:03.947: E/StrictMode(646): at java.util.concurrent.FutureTask.run(FutureTask.java:234) 
08-07 08:23:03.947: E/StrictMode(646): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080) 
08-07 08:23:03.947: E/StrictMode(646): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573) 
08-07 08:23:03.947: E/StrictMode(646): at java.lang.Thread.run(Thread.java:856) 
08-07 08:23:03.947: W/ActivityManager(288): Unbind failed: could not find connection for [email protected] 

我上传这个文件和日志猫太: download my codes and log cat error form 4shared

+4

后堆栈跟踪在您的文章,而不是在什么地方举办的拉链。 – njzk2

+0

我不知道该怎么做 –

+0

Windows - > Show View - > Others - > Android - > LogCat –

你activity_main.xml中应该是这样的:

<?xml version="1.0" encoding="utf-8"?>  
<TabHost 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:id="@android:id/tabhost"> 
     <LinearLayout 
      android:id="@+id/LinearLayout01" 
      android:orientation="vertical" 
      android:layout_height="fill_parent" 
      android:layout_width="fill_parent"> 
     <TabWidget 
      android:id="@android:id/tabs" 
      android:layout_height="wrap_content" 
      android:layout_width="fill_parent" /> 

     <FrameLayout 
      android:id="@android:id/tabcontent" 
      android:layout_height="fill_parent" 
      android:layout_width="fill_parent" /> 

     </LinearLayout>  
</TabHost> 
+0

我使用的是乌尔代码,但问题仍然是:( –

+0

我刚刚检查了你上传的4shared的logcat文件, – armansimonyan13

+0

你也应该改变你的活动 – armansimonyan13