gpt4 book ai didi

java - 无法使用android.support.v7.widget.Toolbar

转载 作者:行者123 更新时间:2023-12-01 16:49:41 26 4
gpt4 key购买 nike

私有(private)android.support.v7.widget.Toolbar工具栏;给出错误“无法解析符号 v7”,我尝试在 gradle 中实现但没有成功,请帮忙

我将在下面提供图像和代码

TOOLBAR XML CODE

SOCIAL MEADIA CLASS XML

SOCIAL MEDIA JAVA CLASS

GRADLE DEPENDENCIES

依赖项 {

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
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.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation "com.github.parse-community.Parse-SDK-Android:parse:1.24.1"
implementation 'com.github.Shashank02051997:FancyToast-Android:0.1.6'

implementation 'com.android.support:design:+'
implementation 'com.android.support:appcompat-v7:29.0.3'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'

XML代码

?xml版本=“1.0”编码=“utf-8”?

android.support.v7.widget.Toolbar

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/myToolbar"
android:background="@color/colorPrimaryDark"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

android.support.v7.widget.Toolbar

JAVA类

公共(public)类 SocialMediaActivity 扩展了 AppCompatActivity {

private android.support.v7.widget.Toolbar toolbar;
private ViewPager viewPager;
private TableLayout tableLayout;
private TabAdapter tabAdapter;

public SocialMediaActivity() {
}

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_social_media);
}

}

最佳答案

v7 支持库不会出现在 gradle 文件的依赖项中。 v7 支持库已被弃用。您应该使用androidx.appcompat.widget.Toolbar。请参阅:https://developer.android.com/jetpack/androidx 。您的 gradle 文件中有依赖项 androidx.appcompat:appcompat:1.1.0,因此您可以访问 androidx 工具栏。

关于java - 无法使用android.support.v7.widget.Toolbar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61715394/

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