这是我的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>
我制作的所有应用都无法运行,它们会立即在我的手机和模拟器上崩溃。我检查了所有代码,我是新手。
答案 0 :(得分:1)
我在您的清单中看不到permissions的设置。这往往会导致应用程序崩溃而不是优雅地退出。尝试将INTERNET permission添加到您的清单中,看看它是否有帮助。
答案 1 :(得分:-2)
首先尝试使用简单的应用。由于许多原因可能会发生崩溃。典型的情况是您的main_activity.xml包含错误。我假设R.main.menu也是一个xml文件。检查那部分。
如果所有程序崩溃,那么你从非常基本的开始。首先写一个非常简单的“Hello world”程序。确保它不会崩溃。然后逐步建立它,每次确保,不会发生崩溃。