本文整理匯總了Java中android.app.ActionBar.setHomeButtonEnabled方法的典型用法代碼示例。如果您正苦於以下問題:Java ActionBar.setHomeButtonEnabled方法的具體用法?Java ActionBar.setHomeButtonEnabled怎麽用?Java ActionBar.setHomeButtonEnabled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.app.ActionBar
的用法示例。
在下文中一共展示了ActionBar.setHomeButtonEnabled方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onCreate
import android.app.ActionBar; //導入方法依賴的package包/類
@Override
protected void onCreate(final Bundle savedState) {
super.onCreate(savedState);
final ActionBar actionBar = getActionBar();
final Intent intent = getIntent();
if (actionBar != null) {
mShowHomeAsUp = intent.getBooleanExtra(EXTRA_SHOW_HOME_AS_UP, true);
actionBar.setDisplayHomeAsUpEnabled(mShowHomeAsUp);
actionBar.setHomeButtonEnabled(mShowHomeAsUp);
}
}
示例2: initActionBar
import android.app.ActionBar; //導入方法依賴的package包/類
protected void initActionBar(){
ActionBar ab = getActionBar();
if (ab!=null)
{
ab.setTitle(getString(R.string.thread_details_activity_title));
ab.setHomeButtonEnabled(true);
}
}
示例3: initActionBar
import android.app.ActionBar; //導入方法依賴的package包/類
protected void initActionBar(){
ActionBar ab = getActionBar();
if (ab!=null)
{
ab.setTitle(getString(R.string.pick_friends));
ab.setHomeButtonEnabled(true);
}
}
示例4: setupActionBar
import android.app.ActionBar; //導入方法依賴的package包/類
public static void setupActionBar(ActionBar actionBar, int rLogoId) {
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME
| ActionBar.DISPLAY_HOME_AS_UP | ActionBar.DISPLAY_SHOW_TITLE);
actionBar.setHomeButtonEnabled(true);
// NOTE:
// There is a bug in the handling of ActionView (SearchView) icon inside ActionBarImpl, so
// we have to workaround it by setting the icon to logo programmatically.
actionBar.setIcon(rLogoId);
}
示例5: onCreate
import android.app.ActionBar; //導入方法依賴的package包/類
@Override
protected void onCreate(final Bundle savedState) {
super.onCreate(savedState);
final ActionBar actionBar = getActionBar();
final Intent intent = getIntent();
if (actionBar != null) {
mShowHomeAsUp = intent.getBooleanExtra(EXTRA_SHOW_HOME_AS_UP, true);
actionBar.setDisplayHomeAsUpEnabled(mShowHomeAsUp);
actionBar.setHomeButtonEnabled(mShowHomeAsUp);
}
StatsUtils.onSettingsActivity(
intent.hasExtra(EXTRA_ENTRY_KEY) ? intent.getStringExtra(EXTRA_ENTRY_KEY)
: EXTRA_ENTRY_VALUE_SYSTEM_SETTINGS);
}
示例6: setupActionBarNoUp
import android.app.ActionBar; //導入方法依賴的package包/類
public static void setupActionBarNoUp(ActionBar actionBar, int rLogoId) {
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME | ActionBar.DISPLAY_SHOW_TITLE);
actionBar.setHomeButtonEnabled(false);
actionBar.setIcon(rLogoId);
}