1
這是我的問題。我需要自定義我的操作欄,以便操作欄中的徽標重新開始活動,並在徽標附近按下以打開下拉列表以更改視圖。我已經搜索了幾個小時的解決方案,我什麼都沒有。這正是我試圖讓:帶有後退導航和下拉列表的Android操作欄
http://blog.mengto.com/wp-content/uploads/2013/02/android-actionbar.png
請幫幫我!由於
import android.app.Activity;
public class Travel extends Activity {
String[] actions = new String[] { "Gallery View", "Grid View" };
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_travel);
// action bar back button
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
/** Create an array adapter to populate dropdownlist */
ArrayAdapter<String> adapter = new ArrayAdapter<String>(
getBaseContext(),
android.R.id.home, actions); //here i am trying to put the home button as the button, but basically i need only the logo to make the back action
/** Enabling dropdown list navigation for the action bar */
getActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
/** Defining Navigation listener */
ActionBar.OnNavigationListener navigationListener = new OnNavigationListener() {
@Override
public boolean onNavigationItemSelected(int itemPosition,
long itemId) {
Toast.makeText(getBaseContext(),
"This is the: " + actions[itemPosition],
Toast.LENGTH_SHORT).show();
return false;
}
};
/**
* Setting dropdown items and item navigation listener for the actionbar
*
* HERE IS WHERE THE CRASH OCCURS
*/
//getActionBar().setListNavigationCallbacks(adapter, navigationListener);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.travel, menu);
return true;
}
}