似乎一切都很好,我的代码是正确的,但午餐应用程序收到此消息时:无法启动活动ComponentInfo并从此行给出错误:webView.findViewById(R.id.webi);
这是我的活动:
public class MainActivity extends AppCompatActivity {
public WebView webView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_page);
webView.findViewById(R.id.webi);
String sag="google.com";
webView.loadUrl(sag);
}
}
xml layout:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<WebView
android:id="@+id/webi"
android:layout_width="match_parent"
android:layout_height="match_parent">
</WebView>
</LinearLayout>
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.erfan.myapplication">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
为什么?
答案 0 :(得分:2)
将来,当向Stack Overflow发布涉及错误的问题时,请在问题中发布崩溃的整个Java堆栈跟踪,而不是强迫我们猜测。
在这种情况下,webView.findViewById(R.id.webi);
将失败,因为webView
是null
。据推测,您需要webView=(WebView)findViewById(R.id.webi);
。