当前位置: 代码迷 >> 综合 >> 10_kotlin安卓(工具栏) toolbar
  详细解决方案

10_kotlin安卓(工具栏) toolbar

热度:1   发布时间:2023-12-15 12:54:35.0

[参考一篇博客进行修改](https://www.kotlintc.com/articles/1974?fr=sidebar)

13067320-d3ab4cc2fd9c0152.png
添加依赖关系

 implementation 'com.android.support:appcompat-v7:23.1.1'
13067320-ab137d14af7f0fa5.png
更改主题
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
13067320-c1c28e60fa4641ef.png
布局
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"><android.support.v7.widget.Toolbarandroid:id="@+id/toolbar"android:layout_width="match_parent"android:layout_height="wrap_content"android:background="@android:color/darker_gray"><TextViewandroid:layout_width="match_parent"android:layout_height="wrap_content"android:text="标题"android:textSize="20sp" /></android.support.v7.widget.Toolbar>
</FrameLayout>>
13067320-3087ef1f64fbc92e.png
业务逻辑
toolbar.setLogo(R.mipmap.ic_launcher)
13067320-190e74108ba5af58.png
模拟器
  相关解决方案