Hi!
I am analyzing my game with flurry-analytics and some people, who play
my game, receive the Exception java.lang.VerifyError in my Highscore-
Activity.
What do I have to do to solve this error?
Here is the quellcode of my Highscore-Activity:
package digle.de.LeonardFrog;
import android.app.Activity;
//all the imports.....
public class AHighscore extends Activity {
private Highscore highscore;
private AbsoluteLayout al_highscore;
private TableLayout tl_highscore;
private TextView tv_names[];
private TextView tv_score[];
private TableRow tr_tablerows[];
private EditText tv_winnername;
private int winnerpos;
public void onStart()
{
super.onStart();
FlurryAgent.onStartSession(this, Global.FlurryId);
}
public void onStop()
{
super.onStop();
FlurryAgent.onEndSession(this);
}
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags
(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN );
setContentView(R.layout.ahighscore);
ImageButton buttonback = (ImageButton) findViewById
(R.id.buttonback);
buttonback.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
finish();
}
});
//some other stuff ......
}
}
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en