Hallo liebe Community,
ich habe folgendes Problem ich habe einen Button erstellt der eine andere Seite meiner App aufrufen soll,
nun hab ich alles soweit ich denke richtig gemacht, allerdings zeigt er mir folgenden fehler an: "view cannot be resolved to a type"
Der Button:
[fieldset] <Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageButton1"
android:layout_alignParentTop="true"
android:layout_marginLeft="32dp"
android:layout_marginTop="150dp"
android:text="Button"
android:onClick="TelefonKlick" />[/fieldset]
Die MainActivity.java:
[fieldset]package com.example.fvs;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@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;
}
@Override
public void TelefonKlick (view view) {
setContentView(R.layout.telefon);
}
}
[/fieldset]