2013-08-07 42 views
-1

我的應用程序必須強制關閉的錯誤,我不知道如何在這之前的代碼修復它如何修復強制關閉錯誤在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 –

回答

0

你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