底部的操作栏而不是顶部

时间:2012-09-18 16:04:07

标签: android

我正在开发一个应用程序,它需要一个底部的操作栏而不是默认的顶部(不是分割操作栏)。

我的应用程序在横向模式下运行,它在汽车中使用,我需要在底部有一个操作栏,因为它更容易使用。

是否可以将操作栏移动到底部?

3 个答案:

答案 0 :(得分:0)

无法在Button上设置操作栏。尝试实现自定义视图。如果您的应用程序在汽车中使用,请尝试使用仪表板设计模式。 可能重复:Android - Change position of android action bar

答案 1 :(得分:0)

  

是否可以将操作栏移动到底部?

不,抱歉。您必须摆脱默认操作栏(例如,使用Theme.NoActionBar)并创建您自己的活动在底部使用的“汽车栏”。

答案 2 :(得分:0)

是。在这种情况下不可能。而不是这样使得像页脚和菜单项一样的布局使用弹出窗口。

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.tabhost);
    init();
    popupInit();

}

@Override
public void onClick(View v) {
    // TODO Auto-generated method stub

     //Creating the instance of PopupMenu  
    PopupMenu popup = new PopupMenu(TestingActivity.this,v);  
    //Inflating the Popup using xml file  
    popup.getMenuInflater().inflate(R.menu.main, popup.getMenu());  

    //registering popup with OnMenuItemClickListener  
    popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {  
     public boolean onMenuItemClick(MenuItem item) {  
          Toast.makeText(TestingActivity.this,"You Clicked : ",Toast.LENGTH_SHORT).show();
      return true;  
     }  
    });  

    popup.show();//showing popup menu


}

public void init() { 
    popupButton = (Button) findViewById(R.id.popupbutton);  
    insidePopupButton = new Button(this); 
    secondPopupButton = new Button(this);
    layoutOfPopup = new LinearLayout(this); 
    insidePopupButton.setText("OK");
    secondPopupButton.setText("OK");
    //layoutOfPopup.setOrientation(1);  
    layoutOfPopup.addView(insidePopupButton); 
    layoutOfPopup.addView(secondPopupButton); 
} 

public void popupInit() { 
    popupButton.setOnClickListener(this); 
    insidePopupButton.setOnClickListener(this); 
    popupMessage = new PopupWindow(layoutOfPopup, LayoutParams.WRAP_CONTENT,
    LayoutParams.WRAP_CONTENT); 
    popupMessage.setContentView(layoutOfPopup); 
}