第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

無(wú)法使用 Glide 庫(kù)加載圖像

無(wú)法使用 Glide 庫(kù)加載圖像

呼啦一陣風(fēng) 2023-03-23 15:19:36
我正在嘗試使用來(lái)自 firebase 的 Glide 庫(kù)加載圖像。圖片 url 正確(使用 Logcat 檢查)。我在活動(dòng)中使用滑行而不是片段。我收到這個(gè)錯(cuò)誤 java.lang.NullPointerException: You cannot start a load on a not yet attached View or a Fragment where getActivity() returns null (which usually occurs when getActivity() is called before the Fragment is attached or after the Fragment is destroyed).這是我的代碼:public class ProfileActivity extends AppCompatActivity {FirebaseAuth auth;DatabaseReference databaseReference;TextView nameTextView , bioTextView;String name2 , bio2 , uidString;Uri imageUri , FilePathUri;Button logOut , editProfile;private SlidrInterface slidr;CircleImageView profilepic;StorageReference storageReference;String Storage_Path = "ProfilePictures/" , downloadUrl;Context context;@Overrideprotected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_profile);    auth = FirebaseAuth.getInstance();    databaseReference = FirebaseDatabase.getInstance().getReference();    final FirebaseUser user = auth.getCurrentUser();    nameTextView = (TextView) findViewById(R.id.name);    bioTextView = (TextView) findViewById(R.id.bio);    logOut = (Button) findViewById(R.id.logout2);    editProfile = (Button) findViewById(R.id.editprofile);    slidr = Slidr.attach(this);    profilepic = (CircleImageView) findViewById(R.id.profilepic);    storageReference = FirebaseStorage.getInstance().getReference();    Intent intent = getIntent();    Bundle uid = intent.getExtras();    uidString = uid.getString("UID");    Log.d("UID OF USER" , "UID OF USER = "+uidString);    final Context finalContext = context;    databaseReference.child("users").child(uidString).addValueEventListener(new ValueEventListener() {        }如果我不使用片段,為什么會(huì)出現(xiàn)此錯(cuò)誤。另外我將如何解決這個(gè)錯(cuò)誤。請(qǐng)幫我
查看完整描述

2 回答

?
紅糖糍粑

TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超6個(gè)贊

從日志來(lái)看,你的可能context是空的。嘗試像這樣直接使用活動(dòng)

GlideApp.with(ProfileActivity.this).load(imageUrl).into(profilepic);


查看完整回答
反對(duì) 回復(fù) 2023-03-23
?
ibeautiful

TA貢獻(xiàn)1993條經(jīng)驗(yàn) 獲得超6個(gè)贊

嘗試這個(gè) :

GlideApp.with(profilepic.getContext()).load(imageUrl).into(profilepic);


查看完整回答
反對(duì) 回復(fù) 2023-03-23
  • 2 回答
  • 0 關(guān)注
  • 216 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)