我应该在我的依赖项中添加什么来制作工具栏?

时间:2019-11-21 11:02:31

标签: java android android-studio

我想删除操作栏并用工具栏替换,但是我不知道该如何处理我的依赖项! 这是我的gradle.build文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.helloword"
        minSdkVersion 14
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}

3 个答案:

答案 0 :(得分:3)

您可以将此主题添加到您的样式中:

<style name="MainTheme" parent="Theme.AppCompat.Light.NoActionBar">
   <item name="colorPrimary">@color/colorPrimary</item>
   <item name="colorPrimaryDark">@color/loginBackground</item>
   <item name="colorAccent">@color/colorAccent</item>
</style>

将此添加到AndroidManifest.xml中的活动主题

<activity android:name=".YourActivity"
          android:theme="@style/MainTheme" />

现在您可以将工具栏添加到活动xml文件中

<androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

现在终于将其添加到您的活动中

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

答案 1 :(得分:2)

您不需要添加任何显示工具栏的依赖项。如果要在项目中添加自定义工具栏,请转到style.xml文件,并将样式设为父级 NoActionBar 而不是 > DarkActionBar

之后,只需将这些代码添加到xml文件中即可。

<androidx.appcompat.widget.Toolbar
  android:id="@+id/toolbar"
  app:popupTheme="@style/AppTheme.PopupOverlay"
  android:background="@color/colorPrimary"
  android:layout_width="match_parent"
  android:layout_height="?attr/actionBarSize"/>

从您的活动文件中找到它

    private Toolbar toolbar;  // first declare it in your Activity class

然后找到它并将其设置为您的 OnCreate 方法

    toolbar= findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    getSupportActionBar().setTitle("Your Title here");  // If you want to add Title

答案 2 :(得分:1)

您不需要任何依赖关系,只需添加即可开始使用

<androidx.appcompat.widget.Toolbar
     android:id="@+id/toolbar"
     android:layout_width="match_parent"
     android:layout_height="?attr/actionBarSize"
     app:popupTheme="@style/AppTheme.NoActionBar.PopupOverlay" />

转到您的布局