本文整理匯總了Java中com.actionbarsherlock.app.ActionBar.setIcon方法的典型用法代碼示例。如果您正苦於以下問題:Java ActionBar.setIcon方法的具體用法?Java ActionBar.setIcon怎麽用?Java ActionBar.setIcon使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.actionbarsherlock.app.ActionBar
的用法示例。
在下文中一共展示了ActionBar.setIcon方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onCreate
import com.actionbarsherlock.app.ActionBar; //導入方法依賴的package包/類
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String accountName = null;
String wizard = null;
Bundle extras = getIntent().getExtras();
if (extras != null) {
accountId = extras.getLong(SipProfile.FIELD_ID, -1);
accountName = extras.getString(SipProfile.FIELD_DISPLAY_NAME);
wizard = extras.getString(SipProfile.FIELD_WIZARD);
}
if (accountId == -1) {
Log.e(THIS_FILE, "You provide an empty account id....");
finish();
}
if(!TextUtils.isEmpty(accountName)) {
setTitle(getResources().getString(R.string.filters) + " : " + accountName);
}
if(!TextUtils.isEmpty(wizard)) {
ActionBar ab = getSupportActionBar();
if(ab != null) {
ab.setIcon(WizardUtils.getWizardIconRes(wizard));
}
}
setContentView(R.layout.account_filters_view);
listFragment = (AccountFiltersListFragment) getSupportFragmentManager().findFragmentById(R.id.list);
listFragment.setAccountId(accountId);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}