我最近开始开发应用程序,而且我已经开始了我的第一场演出。这是一个简单的应用程序,带有徽标和链接到网站的按钮。每次我跑它,它崩溃了,我很难过为什么,因为这是一个如此简单的程序。我花了很多时间在SO上寻找类似的问题,但无济于事。我也经历了eclipse并消除了任何编译器警告。有没有人知道可能出了什么问题?
错误讯息:
我一直在不断地删除应用程序最简单的功能。它仍然无法运作。这是我的.java和主要活动。 (这是一个活动和一个类应用程序)
//necessary imports are omitted. I get no errors for imports
public class FullscreenActivity extends Activity {
Button button = (Button) findViewById(R.id.button1);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fullscreen);
button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
goToUrl("http://switchemup.com");
}
});
}
private void goToUrl(String url) {
Uri uriUrl = Uri.parse(url);
Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);
startActivity(launchBrowser);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.fullscreen, menu);
return true;
}
}
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".FullscreenActivity" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button1"
android:layout_centerHorizontal="true"
android:src="@drawable/switchuplogo" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="94dp"
android:text="View Website" />
</RelativeLayout>
答案 0 :(得分:2)
此行Button button = (Button) findViewById(R.id.button1);
应该会产生错误,这会导致您的应用崩溃。您设置了一个变量,其中包含一个应该在onCreate
方法中的方法。
请改为尝试:
// init your variable only
Button button;
// Then in onCreate, as you already did:
@Override
protected void onCreate(Bundle savedInstanceState) {
// ...
// set findViewById method only here
button = (Button) findViewById(R.id.button1);
// ...
}
如果有帮助,请告诉我。