Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am making an sherlock action bar with 2 menu items.But in the view of action bar both the items are present on extreme left location.I want to add 1 more menu item to the extreme left side of the action bar along with a text in the center of the action bar.This is the code:

package naseeb.bar;

import android.app.AlertDialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

import com.actionbarsherlock.app.ActionBar;
import com.actionbarsherlock.app.SherlockActivity;


public class NaseebactionbarActivity extends SherlockActivity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.newlayout);
        ActionBar actionbar = getSupportActionBar();
        actionbar.setDisplayShowTitleEnabled(false);
        actionbar.setDisplayShowHomeEnabled(false);
        actionbar.show();  

        }

    public void newclickhandler(View view)
    {
        Toast.makeText(NaseebactionbarActivity.this, "press the button to choose the time limit for the timer", Toast.LENGTH_LONG).show();
        Intent intent = new Intent(NaseebactionbarActivity.this,controltransfer.class);
        startActivity(intent);


    }

    @Override
    public boolean onCreateOptionsMenu(com.actionbarsherlock.view.Menu menu ) {
        com.actionbarsherlock.view.MenuInflater inflater = getSupportMenuInflater();
        inflater.inflate(R.menu.menu, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(com.actionbarsherlock.view.MenuItem item){
        // same as using a normal menu
        switch(item.getItemId()) {
        case R.id.menu1:

           LayoutInflater inflater=getLayoutInflater();
          View view = inflater.inflate(R.layout.main,null);
           view.setMinimumWidth(200);
            view.setMinimumHeight(200);

            AlertDialog.Builder alertDialog = new AlertDialog.Builder(this);
            alertDialog.setView(view);
            alertDialog.show();


            break;
        case R.id.menu2:
            Intent intent = new Intent(NaseebactionbarActivity.this,controltransfer.class);
            startActivity(intent);
            break;
        }

        return true;
    }

    public void makeToast(String message) {

        Toast.makeText(this, message, Toast.LENGTH_SHORT).show();
    }   


}

Please tell me how to solve this problem.

share|improve this question
some help from the seniors – Naseeb Sheoran Jul 23 '12 at 14:59
@Chinaski sir your answer is not being shown here – Naseeb Sheoran Jul 23 '12 at 15:00
I have added no answer, just retaged the question with actionbarsherlock tag. – Chinaski Jul 23 '12 at 15:08
seniors please help me i am not getting through this problem – Naseeb Sheoran Jul 23 '12 at 15:13
Spamming the comments won't make anyone notice this question any more. – dmon Jul 23 '12 at 15:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.