我無(wú)法導(dǎo)入支持庫(kù),現(xiàn)在我只導(dǎo)入:import androidx.fragment.app.Fragment;import android.app.Fragment; 谷歌搜索,我意識(shí)到 androidx. 取代支持。但問(wèn)題仍然懸而未決。android { compileSdkVersion 28 buildToolsVersion "29.0.0" defaultConfig { applicationId "com.example.criminalintent" minSdkVersion 19 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } ... implementation 'com.android.support:appcompat-v7:28.0.0'需要:import android.support.v4.app.Fragment;
1 回答

躍然一笑
TA貢獻(xiàn)1826條經(jīng)驗(yàn) 獲得超6個(gè)贊
嘗試這個(gè) :
dependencies {
... //other
implementation 'androidx.appcompat:appcompat:1.0.2'
}
使用 AndroidX 而不是支持庫(kù)。
添加回答
舉報(bào)
0/150
提交
取消