日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

androidx使用Toolbar

發布時間:2024/3/12 编程问答 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 androidx使用Toolbar 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

androidx使用Toolbar

  • 將默認標題欄改為隱藏狀態
  • ?

    <resources>

    ????<!-- Base application theme. -->
    ????<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    ????????<!-- Customize your theme here. -->
    ????????<item name="colorPrimary">@color/colorPrimary</item>
    ????????<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    ????????<item name="colorAccent">@color/colorAccent</item>
    ????</style>

    </resources>

    2.修改默認布局文件代碼

    ?

    <?xml version="1.0" encoding="utf-8"?>
    <androidx.constraintlayout.widget.ConstraintLayout 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"
    ????android:layout_width="match_parent"
    ????android:layout_height="match_parent"
    ????tools:context=".MainActivity">


    ????<androidx.appcompat.widget.Toolbar
    ????????android:id="@+id/toolbar"
    ????????android:layout_width="match_parent"
    ????????android:layout_height="50dp"
    ????????android:background="@color/colorPrimary"
    ????????tools:ignore="MissingConstraints">
    ????</androidx.appcompat.widget.Toolbar>



    </androidx.constraintlayout.widget.ConstraintLayout>

    ?

    3.在res目錄下創建menu文件夾,然后在menu文件夾下創建toolbar.xml

    ?

    4.修改toolbar.xml文件里的內容為

    <?xml version="1.0" encoding="utf-8"?>
    <menu xmlns:android="http://schemas.android.com/apk/res/android"
    ??????xmlns:app="http://schemas.android.com/apk/res-auto">
    ??????<item
    ??????????android:id="@+id/backup"
    ??????????android:title="BackUp"
    ??????????android:icon="@drawable/d27"
    ??????????app:showAsAction="always" />
    ????<item
    ????????android:id="@+id/backup1"
    ????????android:title="BackUp"
    ????????android:icon="@drawable/d27"
    ????????app:showAsAction="always" />
    ????<item
    ????????android:id="@+id/backup2"
    ????????android:title="BackUp"
    ????????android:icon="@drawable/d27"
    ????????app:showAsAction="always" />


    </menu>

    5.修改MainActivity內代碼

    package com.example.meterial;

    import androidx.appcompat.app.AppCompatActivity;

    import android.os.Bundle;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.widget.Toast;

    import androidx.appcompat.widget.Toolbar;

    public class MainActivity extends AppCompatActivity {

    ????@Override
    ????protected void onCreate(Bundle savedInstanceState) {
    ????????super.onCreate(savedInstanceState);
    ????????setContentView(R.layout.activity_main);
    ????????Toolbar toolbar=(Toolbar) findViewById(R.id.toolbar);
    ????????setSupportActionBar(toolbar);
    ????}

    ????@Override
    ????public boolean onCreateOptionsMenu(Menu menu) {
    ????????getMenuInflater().inflate(R.menu.toolbar,menu);
    ????????return true;
    ????}

    ????@Override
    ????public boolean onOptionsItemSelected(MenuItem item) {
    ????????switch (item.getItemId()){
    ????????????case R.id.backup:
    ????????????????Toast.makeText(this,"點擊了第一個按鈕",Toast.LENGTH_LONG).show();
    ????????????????break;
    ????????????case ?R.id.backup1:
    ????????????????Toast.makeText(this,"點擊了第二個按鈕",Toast.LENGTH_LONG).show();
    ????????????????break;
    ????????????case ?R.id.backup2:
    ????????????????Toast.makeText(this,"點擊了第三個按鈕",Toast.LENGTH_LONG).show();
    ????????????????break;
    ????????}
    ????????return true;
    ????}
    }

    6.最后效果

    ?

    總結

    以上是生活随笔為你收集整理的androidx使用Toolbar的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。