找不到类“ androidx.core.widget.DrawerLayout”

时间:2018-12-05 15:04:06

标签: android androidx

使用Android Studio菜单选项“重构->重构到Androidx ...”迁移到Androidx程序包后

我的build.gradle看起来像

implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
implementation 'com.google.android.material:material:1.1.0-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'

在运行应用程序期间,我遇到了这个问题:

Didn't find class "androidx.core.widget.DrawerLayout" 

迁移工具似乎有相同的问题

1 个答案:

答案 0 :(得分:13)

我能够通过以下方式解决它 只需替换

<pre>
    getEmploy() : Observable<IEmployee[]>
    {
       return this.http.get<IEmployee[]>(this._url);
    }

     getEmploy1() 
     {
         return this.http.get(this._url);
     }

</pre>

使用

androidx.core.widget.DrawerLayout

出现在每个地方。