我正在處理學生的詳細信息申請。我將所有學生的詳細信息存儲在sqlite數據庫中,並將我的sqlite文件保存在assets文件夾中。我需要顯示學生照片也。爲此,我在db中保存了一個列,並存儲了學生的圖像名稱。現在我在列表視圖中顯示學生姓名。單擊學生姓名時,必須顯示該特定學生的所有詳細信息以及照片。我如何顯示特定的學生照片?我將學生照片保存在可繪製的文件夾中。在android中顯示圖片?
我的代碼:
student.xml
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/yes"
android:src="@drawable/photo"/>
Student.java
Bitmap image = BitmapFactory.decodeResource(getResources(),R.drawable.photo);
ImageView Image1 = (ImageView) findViewById(R.id.yes);
Image1.setImageBitmap(image);
請幫我對此....提前
包括你在源碼文件中的圖像? – vnshetty
你面臨的問題是什麼?你是否有錯誤或沒有圖像? @vnshetty她有可繪製文件夾中的圖像(最後一行問題) – Antrromet
@ Antrromet很難理解她想要什麼。 – vnshetty