It's possible to add imageview in a toolbar?

五迷三道 提交于 2019-12-05 06:05:43
Elltz

i guess you know how to add your imageViews to your ToolBar if not check this .. After that get a reference to your ToolBar use findViewById

Toolbar tool = finViewById(R.id.mytoolbar);//cast it to ToolBar
ImageView im1 = tool.findViewById(R.id.myimageviewone); // cast it
//same for the others
// now you can set your click listeners
//in your onclick listeners you use fragmentmanager along with fragmenttransaction 
//to start a new fragment in your layout or on your layout, you can google
// for that
Booger

You should just be using the regular MenuItem functionality built into the Toolbar (and same as ActionBar). Look up any ActionBar tutorial, and look into using ,creating MenuItems (you will do most of this in XML). You will then be able to use the OS framework, to capture onClickListenters.

Here are the docs (you will notice the MenuItem has an icon attribute, which will place the images into the Toolbar):

android:icon="@drawable/ic_new_game"

Docs: http://developer.android.com/guide/topics/ui/menus.html

I would recomend to use ImageButtons. You can set image sources which will be displayed as a Button and they behave like normal Buttons with OnClickListeners.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!