私はAndroidの世界ではまったく新しいので、アクションバーを適切に変更する方法がわかりません.
私の場合、メイン アクティビティにはFrameLayout
、Navigation Drawer を使用してフラグメントを切り替える場所があります。
アクションバーのパラメーターを変更するにはいくつかの方法があることを確認しましたが、どれが最適かはわかりません。ActionBar (およびフラグメント) を変更するためにこれまでに使用したものは次のとおりです。
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public void displayView(int position) {
// update the main content by replacing fragment
Fragment fragment = null;
ImageView imageView = new ImageView(getSupportActionBar().getThemedContext());
imageView.setScaleType(ImageView.ScaleType.CENTER);
switch (position) {
case 0:
imageView.setImageResource(R.drawable.ic_launcher);
getSupportActionBar().setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.main_menu)));
fragment = new Seccion1MainMenu();
break;
case 1:
imageView.setImageResource(R.drawable.ic_security);
getSupportActionBar().setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.security_menu)));
fragment = new Seccion2Security();
break;
case 2:
imageView.setImageResource(R.drawable.ic_light);
getSupportActionBar().setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.light_menu)));
fragment = new Seccion3();
break;
case 3:
imageView.setImageResource(R.drawable.ic_fan);
getSupportActionBar().setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.fan_menu)));
fragment = new Seccion4();
break;
default:
imageView.setImageResource(R.drawable.ic_launcher);
break;
}
if (fragment != null) {
FragmentManager fragmentManager = getFragmentManager();
fragmentManager.beginTransaction()
.replace(R.id.frame_container, fragment).commit();
// update selected item and title, then close the drawer
mDrawerList.setItemChecked(position, true);
mDrawerList.setSelection(position);
getSupportActionBar().setCustomView(imageView);
setTitle(navMenuTitles[position]);
mDrawerLayout.closeDrawer(mDrawerList);
} else {
// error in creating fragment
Log.e("Alvaro", "MainActivity - Error cuando se creo el fragment");
}
コードでわかるように、アクション バー、タイトル、および画像の色を変更します。これはコンテンツを変更する適切な方法ですか、それともマシンを強制していますか?
どうにかできないのは、ステータスバーの色を自動的に変更することです。いくつかの投稿を読みましたが、達成できませんでした。提案された解決策の 1 つは、次の行を追加することでした。
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
しかし、私は結果を得ませんでした。何か考えはありますか?ご協力いただきありがとうございます :)