gpt4 book ai didi

android - 无法设置 float 操作按钮,因为找不到类 (Android Studio)

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:56:09 25 4
gpt4 key购买 nike

所以我是 android 的新手,我正在尝试使用 Android Design Support Library 设置一个 float 操作按钮使用 this guide在 Android Studio 中。

我的项目:记下build.gradle文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

我的模块:app build.gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
applicationId "com.example.noted"
minSdkVersion 21
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:support-v4:22.2.0'
compile 'com.android.support:design:22.2.0'
}

在我的activity_main.xml中我尝试实现

<android.support.design.widget.FloatingActionButton 
... />

但我在构建后遇到其中一个渲染问题弹出窗口:

找不到以下类: -android.support.design.widget.FloatingActionButton

我的猜测是我的依赖项做错了,但我真的不知道。我一直试图让它工作几个小时但没有运气,非常感谢任何帮助。

谢谢!

最佳答案

你需要Library设计,在build.gradle文件中添加:

compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:design:25.1.1'

然后Sync Gradle, build and Reresh

关于android - 无法设置 float 操作按钮,因为找不到类 (Android Studio),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30739012/

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