Nothing appears on the screen.
Can you give me a complete example. Eclipse gave me an error for not including the void which you did not have in your example
Here's my code...
thks,
cre
___________________
package com.adndroid.something;
import android.app.Activity;
import android.os.Bundle;
public class some extends Activity {
/** Called when the activity is first created. */
void showAlert(CharSequence title, CharSequence message, CharSequence buttonText, boolean cancelable){};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
initControls();
}
private void initControls()
{
showAlert("A funny title", "MessageBoxes rule extremely!", "Hit Me!",false);
}
}



