Problem: möchte ein Ergebnis in einer textview ausgeben. App startet aber stürzt ab.
Main.xml:
XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text=""
android:id="@+id/mainTextView1"/>
</LinearLayout>
Alles anzeigen
und MainActivity.java:
Java
package com.mycompany.myapp3;
import android.app.*;
import android.os.*;
import android.widget.TextView;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
int zufallszahl;
int x;
x =100;
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView text = (TextView) findViewById(R.id.mainTextView1);
zufallszahl = (int)(Math.random()*17)+ 13;
x = x - zufallszahl;
text.setText(x);
}
}
Alles anzeigen
Lösung?