I’m trying to create aplication interface using TabHost. Here is an example that I’m using: example
I followed it step by step but I’ m getting error in Main class that I can’t deal with. Here is my code:
import android.app.TabActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;
public class Main extends TabActivity {
@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.activity_main, menu);
return true;
}
TabHost tabHost = getTabHost();
TabSpec settings = tabHost.newTabSpec("Settings");
settings.setIndicator("Settings", getResources().getDrawable(R.drawable.icon_settings_tab));
Intent settingsIntent = new Intent(this, Settings.class);
settings.setContent(settingsIntent);
TabSpec recorder = tabHost.newTabSpec("Recorder");
recorder.setIndicator("Recorder", getResources().getDrawable(R.drawable.icon_recorder_tab));
Intent recorderIntent = new Intent(this, Recorder.class);
recorder.setContent(recorderIntent);
TabSpec player = tabHost.newTabSpec("Player");
player.setIndicator("Recorder", getResources().getDrawable(R.drawable.icon_player_tab));
Intent playerIntent = new Intent(this, Player.class);
player.setContent(playerIntent);
tabHost.addTab(settings);
tabHost.addTab(recorder);
tabHost.addTab(player);
}
And for the following line:
settings.setIndicator("Settings", getResources().getDrawable(R.drawable.icon_settings_tab));
I’m getting this errors:
Multiple markers at this line
- Syntax error on token ")", delete this token
- Syntax error, insert ";" to complete FieldDeclaration
- Syntax error on token ".", { expected
- Return type for the method is missing
- Syntax error, insert "}" to complete ClassBody
- The method getDrawable(int) is undefined for the type Main
- Syntax error on token(s), misplaced construct(s)
- Return type for the method is missing
Put all that code
inside the
onCreate()methodAs a result you will get this: