最近我从git-hub下载了一个代码,并将其同步到我的android studio。我遇到了很多错误和问题,然后解决了。但是,我现在遇到的最后一个问题是,我的android studio无法像在此image
中看到的那样,无法使用类'FloatingActionButton'请注意,早期的许多其他类,包括“ AppCompatActivity”都无法解析。更改依赖项以解决以下问题
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'}
但是,即使在更改依赖项之后,仍然干净地构建项目,执行“ Invalidate Caches / Restart ...”,“ FloatingActionButton”的问题仍然存在。谁能帮我解决这个问题吗?
这是repository
的链接
这是发生错误的java code of the activity
答案 0 :(得分:10)
FloatingActionButton在设计库中。
将此行添加到您的依赖项中:
implementation 'com.android.support:design:27.1.1'
此帖子还提供了有关FloatingActionButton
的更多常规信息:FloatingActionButton example with Support Library
答案 1 :(得分:0)
@Sub 6 Resources已经完全回答了这个问题,但是我想添加一个奖金提示。如果您已经在代码中添加了df['Session'] = (df.groupby(['Location',pd.Grouper(key='Time',freq='15min')])
.ngroup()+1)
>>> df
Location Time Session
0 A 2016-01-01 00:00:15 1
1 A 2016-01-01 00:05:00 1
2 A 2016-01-01 00:10:08 1
3 A 2016-01-01 00:14:08 1
4 A 2016-01-01 00:15:49 2
5 B 2016-01-01 00:15:55 3
6 C 2016-01-01 00:15:58 4
7 C 2016-01-01 00:26:55 4
8 C 2016-01-01 00:29:55 4
9 C 2016-01-01 00:31:08 5
,并且编译器仍然无法解析FloatingActionButton类,则只需重建项目。我和一个同事最近在遇到依赖项时遇到了同样的问题,只需进行一次简单的重建就可以解决所有问题。
我希望这会有所帮助。.编码愉快!