gpt4 book ai didi

android - 如何获取工具栏的自定义 View

转载 作者:行者123 更新时间:2023-11-29 17:22:42 24 4
gpt4 key购买 nike

我为 fargments 工具栏创建了一个自定义 View ,我在 View 中添加了两个 ImageButtons,并从菜单资源中删除了这些项目。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="?android:attr/actionBarSize"
android:id="@+id/tool_bar"
android:background="@color/white">

<ImageButton
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/video_camera"
android:icon="@drawable/camcorder_pro_96px"
android:layout_gravity="left|center_horizontal" />

<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/photo_camera"
android:icon="@drawable/compact_camera_96px"
android:layout_gravity="right|center_horizontal"
/>

</android.support.v7.widget.Toolbar>

我已将此 View 附加到我的 MainActivity 中的工具栏

toolbar = (Toolbar)findViewById(R.id.tool_bar);
setSupportActionBar(toolbar);

Screenshot of Toolbar

最佳答案

android:icon

It is displayed to users when a representation of the activity is required on-screen.

因为你应该使用 android:src 而不是 android:icon

android:src

Sets a drawable as the content of this ImageView or ImageButton.

关于android - 如何获取工具栏的自定义 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36061312/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com