-4

这是我的 ActivityMain

package com.quinnco.facebookmessagefeed;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.webkit.WebSettings;
import android.webkit.WebView;




public class MainActivity extends Activity {

   WebView webview;



@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    WebView myWebView = (WebView) findViewById(R.id.Feed);
    myWebView.loadUrl("http://www.facebook.com/home");
    WebSettings websettings = myWebView.getSettings();
    WebView myWebView_Chat = (WebView) findViewById(R.id.Chat);
    myWebView_Chat.loadUrl("http://www.facebook.com/messages");
    webview.getSettings().setJavaScriptEnabled(true);
} 

@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;
}

这是我的清单

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.quinnco.facebookmessagefeed"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="18" />

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.quinnco.facebookmessagefeed.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

 </manifest>

我制作的所有应用程序都无法运行,它们会在我的手机和模拟器上立即崩溃。我检查了我的所有代码,我是新手。

4

2 回答 2

1

我在您的清单中没有看到任何权限设置。这往往会导致应用程序崩溃而不是正常退出。尝试将INTERNET 权限添加到您的清单中,看看是否有帮助。

于 2013-09-08T01:25:44.373 回答
-2

首先尝试一个简单的应用程序。由于多种原因,可能会发生崩溃。一个典型的案例是您的 main_activity.xml 包含错误。我假设 R.main.menu 也是您的 xml 文件。也检查那部分。

如果所有程序都崩溃了,那么你从非常基础的开始。首先编写一个非常简单的“Hello world”程序。确保它不会崩溃。然后逐步建立它,每次确保不会发生崩溃。

于 2013-09-08T01:29:59.240 回答