0

私が達成したいのは、動的な方法TextViewで変更して、ActionBar特定のフィールドの特定の値を表示することです。

私が達成したいのは、いくつかのアイテムのカウンターを使用して、ABS でソリューションのようなバッジを作成することです。ABS のグラフィックを置き換える方法は知っていますが、これは私の理解の範囲を超えています。

4

2 に答える 2

3

どうですか:

ActionBar actionBar = getSupportActionBar();
        if (actionBar != null)
        {
            actionBar.setBackgroundDrawable(getResources().getDrawable(R.drawable.background));
            actionBar.setIcon(R.drawable.icon);
            actionBar.setTitle(title);
        }
于 2012-09-26T10:53:42.560 に答える
0

これを試して...

  int titleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");

    TextView yourTextView = (TextView)findViewById(titleId);
    yourTextView.setText("TITLE TEXT");
于 2012-12-03T05:53:43.483 に答える