我想要这样的事情:
第3个图标用于通知,现在只是一个png图像。是否有可能做某事,以便我可以改编文本/数字,即..,03以编程方式显示实际的通知号。
谢谢
答案 0 :(得分:122)
以下是一些适合我的示例代码。
1:为徽章菜单项创建布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="48dp"
android:layout_height="fill_parent"
android:layout_gravity="right" >
<!-- Menu Item Image -->
<ImageView
android:layout_width="48dp"
android:layout_height="fill_parent"
android:clickable="true"
android:src="@drawable/bkg_actionbar_notify_off" />
<!-- Badge Count -->
<TextView
android:id="@+id/actionbar_notifcation_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:padding="@dimen/padding_small"
android:text="99"
android:textColor="@color/holo_orange_dark" />
</RelativeLayout>
2:在res / menu中创建一个菜单项,并将actionLayout设置为你的布局
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/badge"
android:actionLayout="@layout/actionbar_badge_layout"
android:icon="@drawable/icn_menu_posts"
android:showAsAction="always">
</item>
</menu>
3:然后在您的活动或片段的onCreateOptionsMenu中,您可以执行以下操作...
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.badge, menu);
RelativeLayout badgeLayout = (RelativeLayout) menu.findItem(R.id.badge).getActionView();
TextView tv = (TextView) badgeLayout.findViewById(R.id.actionbar_notifcation_textview);
tv.setText("12");
}
注意:如果您希望稍后更改徽章计数,则可以存储对传递给onCreateOptionsMenu的Menu对象的引用,并使用相同的代码获取所需的视图并设置值。
=== ApCompat警告========================================== ======
如果使用AppCompatActivity,则必须在onCreateOptionsMenu
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main_menu, menu);
MenuItem item = menu.findItem(R.id.badge);
MenuItemCompat.setActionView(item, R.layout.actionbar_badge_layout);
RelativeLayout notifCount = (RelativeLayout) MenuItemCompat.getActionView(item);
TextView tv = (TextView) notifCount.findViewById(R.id.actionbar_notifcation_textview);
tv.setText("12");
return super.onCreateOptionsMenu(menu);
答案 1 :(得分:8)
一种选择是为此创建自己的操作视图。在通货膨胀之后使用XML中的android:actionLayout
和Java中的getActionView()
来操纵它。您的操作视图将是ImageView
(用于图标)和...徽章的内容。我怀疑你会发现尝试通过文字制作徽章会很困难,并且你会更好地使用一堆徽章图像,其中一个徽章图像位于图标的顶部(例如,通过RelativeLayout
或FrameLayout
,或将图标包装在LayerListDrawable
)。
另一种选择只是拥有N个版本的图标+徽章,可能包含在LevelListDrawable
中,您可以在运行时选择。
答案 2 :(得分:1)
不得不对domji84的答案做一些改动。出于某种原因,点击imageview没有调用click事件,它在删除clicklabe =&#34; true&#34;从图像视图。
menu_item_cart.xml
<!-- Menu Item Image -->
<ImageView
android:layout_width="30dp"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher" />
<!-- Badge Count -->
<TextView
android:id="@+id/cartCountTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:padding="5dp"
android:layout_marginTop="5dp"
android:text="99"
android:textColor="@android:color/white"
android:textStyle="bold"/>
</RelativeLayout>
menu_main.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity">
<item
android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
app:showAsAction="never" />
<item
android:id="@+id/action_cart"
android:title="test"
app:actionLayout="@layout/menu_item_cart_count"
app:showAsAction="always">
</item>
</menu>
活动代码
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
menu.findItem(R.id.action_cart).getActionView().setOnClickListener(this);
return true;
}
答案 3 :(得分:0)
您可以在此处使用自定义操作栏和默认操作栏... 首先通过xml或java准备布局。然后使用display matrics并获取窗口管理器。这样就可以扩展布局。像这样
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
ActionBar ab = getSupportActionBar();
View mactionbar = getLayoutInflater().inflate(R.layout.main2, null);