Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SDカードから取得したImageViewに画像を設定する必要がある場合は、次のコードを使用します。
Drawable c = Drawable.createFromPath(imgPath); if(c!=null) imageView.setImageResource(c);
ファイルの存在管理が必要かどうかはわかります。画像が存在しない場合、createFromPath メソッドは何を返しますか?
のソースコードからDrawable:
Drawable
return null;
null を入力パラメータとして指定すると、null も返されます。