android 如何在图像视图中设置图像路径
How to set image path on image view in android
我有以下代码,我在其中获取 ID、名称和图像路径。
我想在图像视图中显示该图像路径。
public class AllProductsActivity extends ListActivity {
String pid;
private ProgressDialog pDialog;
// Creating JSON Parser object
JSONParser jParser = new JSONParser();
ArrayList<HashMap<String, String>> productsList;
// url to get all products list
private static String url_all_products = "example.com/files/get_all_products.php";
// JSON Node names
private static final String TAG_SUCCESS = "success";
private static final String TAG_PRODUCTS = "products";
private static final String TAG_PID = "id";
private static final String TAG_NAME = "name";
private static final String TAG_PRICE = "price";
private static final String TAG_IMAGE1 = "image1";
// products JSONArray
JSONArray products = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.all_products);
// Hashmap for ListView
productsList = new ArrayList<HashMap<String, String>>();
// getting product details from intent
Intent i = getIntent();
// getting product id (pid) from intent
pid = i.getStringExtra(TAG_PID);
// Loading products in Background Thread
new LoadAllProducts().execute();
// Get listview
ListView lv = getListView();
// on seleting single product
// launching Edit Product Screen
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// getting values from selected ListItem
String pid = ((TextView) view.findViewById(R.id.pid)).getText()
.toString();
// Starting new intent
Intent in = new Intent(getApplicationContext(),
EditProductActivity.class);
// sending pid to next activity
in.putExtra(TAG_PID, pid);
// starting new activity and expecting some response back
startActivityForResult(in, 100);
}
});
}
// Response from Edit Product Activity
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
// if result code 100
if (resultCode == 100) {
// if result code 100 is received
// means user edited/deleted product
// reload this screen again
Intent intent = getIntent();
finish();
startActivity(intent);
}
}
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(AllProductsActivity.this);
pDialog.setMessage("Loading products. Please wait...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(false);
pDialog.show();
}
protected String doInBackground(String... args) {
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("id", pid));
// getting JSON string from URL
JSONObject json = jParser.makeHttpRequest(url_all_products, "GET",
params);
// Check your log cat for JSON reponse
Log.d("All Products: ", json.toString());
try {
// Checking for SUCCESS TAG
int success = json.getInt(TAG_SUCCESS);
if (success == 1) {
// products found
// Getting Array of Products
products = json.getJSONArray(TAG_PRODUCTS);
// looping through All Products
for (int i = 0; i < products.length(); i++) {
JSONObject c = products.getJSONObject(i);
// Storing each json item in variable
String id = c.getString(TAG_PID);
String name = c.getString(TAG_NAME);
String price = c.getString(TAG_PRICE);
String image1 = c.getString(TAG_IMAGE1);
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
// adding each child node to HashMap key => value
map.put(TAG_PID, id);
map.put(TAG_NAME, name);
map.put(TAG_PRICE, price);
map.put(TAG_IMAGE1, image1);
// adding HashList to ArrayList
productsList.add(map);
}
} else {
}
} catch (JSONException e) {
e.printStackTrace();
}
return null;
}
protected void onPostExecute(String file_url) {
// dismiss the dialog after getting all products
pDialog.dismiss();
// updating UI from Background Thread
runOnUiThread(new Runnable() {
public void run() {
/**
* Updating parsed JSON data into ListView
* */
ListAdapter adapter = new SimpleAdapter(
AllProductsActivity.this, productsList,
R.layout.list_row, new String[] { TAG_PID,
TAG_NAME, TAG_PRICE, TAG_IMAGE1 },
new int[] { R.id.pid, R.id.name, R.id.price,
R.id.thumbnail });
// updating Listview
setListAdapter(adapter);
}
});
}
}
}
我已经在列表适配器中传递了 image1
路径,并且我已经在 .xml 文件中获取了图像视图。
但我没有得到蚂蚁图像。
list_row.xml containg image view:
<ImageView
android:id="@+id/thumbnail"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_alignParentLeft="true"
android:layout_marginRight="8dp" />
如何在 imageview 中显示图像?
您需要创建自定义适配器、扩充行布局并从布局中检索 ImageView。然后你可以像这样以编程方式设置你的ImageView:
File imgFile = new File(yourImagePath);
if(imgFile.exists()){
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
yourImageView.setImageBitmap(myBitmap);
}
创建您自己的适配器的教程:http://www.vogella.com/tutorials/AndroidListView/article.html
我认为您将与 JSON 一起工作,
并从服务器加载图片,
如果是,我会建议您使用任何图像加载器,例如通用图像加载器。
Picasso 在另一个线程中下载图像并为您管理:
- 同时图像仍在下载中的占位符
- 调整大小
- cropping/centering/scaling
- 缓存(不必每次都下载图片)
- 它甚至 "image fade in",现在 popular/normal
非常简单,举个例子:
Picasso.with(context)
.load(url)
.placeholder(R.drawable.placeholder)
.resize(imgWidth, imgHeight)
.centerCrop()
.into(image);
下载 picasso jar 文件并添加到 android 首先构建应用程序 jar:
现在只需从 json
获取您的 url
if(response.login_data.avtar!=null &&response.login_data.avtar.length()>0) {
String photo=response.login_data.avtar.toString();
infoLog("avatar"+photo);
String url=App.WEB_PHOTO_URL+photo;
infoLog("avatar url"+url);
Picasso.with(HealthProfile.this).load(url).into(img);
}
else {
Picasso.with(HealthProfile.this).load(R.drawable.user).into(img);
}
您需要执行以下步骤:
1) 您需要实现一个自定义适配器,该适配器将根据该行 URL 上相应的 URL 延迟加载图像来填充图像
2)实现一个可以下载图像并在完成后刷新图像视图的 LazyLoader
3)调用自定义适配器的getView方法时调用LazyLoading
4) 在 OnPostExecute 中调用您的自定义适配器,而不是您的 Listadapter
5) 或者为了使 LazyLoading 部分更容易,您的代码使用 Universal Image Loader
ImageView imageView=(ImageView)findViewById(R.id.animage);
Uri imageUri = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM);
if (imageUri != null) {
String filePath = null;
filePath = imageUri.getPath();
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 8;
Bitmap bitmap = BitmapFactory.decodeFile(filePath,options);
imageView.setImageBitmap(bitmap);
}
您可以简单地使用 Picasso 库,一个强大的图像下载和缓存库 Android。
它提供了超级简洁的语法,因此您可以在 none 混淆的情况下使用它。
例如,在您的适配器中,您可以这样尝试:
首先,如果你使用 SimpleAdapter,ViewBinder 是你应该知道的。详情见http://developer.android.com/reference/android/widget/SimpleAdapter.ViewBinder.html
然后,在自己的ViewBinder的setViewValue中,添加如下代码即可:
Picasso.with(context).load(img_path).into(imgView)
或者,如果您自定义自己的适配器,请在覆盖的 getView 函数中添加代码。
最后,它会在您的图像视图中显示图像。
关于毕加索的更多细节:http://square.github.io/picasso/
Universal Image Loader是您的另一个选择,它也有很多用户。它更可定制。参见:https://github.com/nostra13/Android-Universal-Image-Loader
为时已晚,但也许它可以帮助某人。
如果您可以在项目中使用一些图像加载库,只需使用此自定义图像视图允许设置 url 来自 xml.
因为您可以从 xml 设置 url,所以可以直接将您的 link 变量绑定到 imageview。
创建自定义图像视图。
class MyImageView : ImageView {
var url: String = ""
set(value){
field = value
Glide.with(this).load(value).into(this)
}
constructor(context: Context) : super(context)
constructor(context: Context, attrs : AttributeSet) : super(context,attrs){
val array = context.obtainStyledAttributes(attrs, R.styleable.MyImageView)
val url = array.getString(R.styleable.MyImageView_url)
if(url!=null){
Glide.with(this).load(url).into(this)
}
array.recycle()
}
constructor(context: Context, attrs: AttributeSet , defStyleAttr : Int) : super(context, attrs, defStyleAttr)
}
在attr.xml
中添加这个
<declare-styleable name="MyImageView">
<attr name="url" format="string" />
</declare-styleable>
在xml
中使用
<package.path.MyImageView
android:id="@+id/image_company_logo"
android:scaleType="fitCenter"
android:layout_width="match_parent"
android:layout_height="80dp"
android:contentDescription="logo"
app:url="@{invoice.invoiceLogoLink}"/> //for data binding purpose
了解更多信息here
我有以下代码,我在其中获取 ID、名称和图像路径。
我想在图像视图中显示该图像路径。
public class AllProductsActivity extends ListActivity {
String pid;
private ProgressDialog pDialog;
// Creating JSON Parser object
JSONParser jParser = new JSONParser();
ArrayList<HashMap<String, String>> productsList;
// url to get all products list
private static String url_all_products = "example.com/files/get_all_products.php";
// JSON Node names
private static final String TAG_SUCCESS = "success";
private static final String TAG_PRODUCTS = "products";
private static final String TAG_PID = "id";
private static final String TAG_NAME = "name";
private static final String TAG_PRICE = "price";
private static final String TAG_IMAGE1 = "image1";
// products JSONArray
JSONArray products = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.all_products);
// Hashmap for ListView
productsList = new ArrayList<HashMap<String, String>>();
// getting product details from intent
Intent i = getIntent();
// getting product id (pid) from intent
pid = i.getStringExtra(TAG_PID);
// Loading products in Background Thread
new LoadAllProducts().execute();
// Get listview
ListView lv = getListView();
// on seleting single product
// launching Edit Product Screen
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// getting values from selected ListItem
String pid = ((TextView) view.findViewById(R.id.pid)).getText()
.toString();
// Starting new intent
Intent in = new Intent(getApplicationContext(),
EditProductActivity.class);
// sending pid to next activity
in.putExtra(TAG_PID, pid);
// starting new activity and expecting some response back
startActivityForResult(in, 100);
}
});
}
// Response from Edit Product Activity
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
// if result code 100
if (resultCode == 100) {
// if result code 100 is received
// means user edited/deleted product
// reload this screen again
Intent intent = getIntent();
finish();
startActivity(intent);
}
}
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(AllProductsActivity.this);
pDialog.setMessage("Loading products. Please wait...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(false);
pDialog.show();
}
protected String doInBackground(String... args) {
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("id", pid));
// getting JSON string from URL
JSONObject json = jParser.makeHttpRequest(url_all_products, "GET",
params);
// Check your log cat for JSON reponse
Log.d("All Products: ", json.toString());
try {
// Checking for SUCCESS TAG
int success = json.getInt(TAG_SUCCESS);
if (success == 1) {
// products found
// Getting Array of Products
products = json.getJSONArray(TAG_PRODUCTS);
// looping through All Products
for (int i = 0; i < products.length(); i++) {
JSONObject c = products.getJSONObject(i);
// Storing each json item in variable
String id = c.getString(TAG_PID);
String name = c.getString(TAG_NAME);
String price = c.getString(TAG_PRICE);
String image1 = c.getString(TAG_IMAGE1);
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
// adding each child node to HashMap key => value
map.put(TAG_PID, id);
map.put(TAG_NAME, name);
map.put(TAG_PRICE, price);
map.put(TAG_IMAGE1, image1);
// adding HashList to ArrayList
productsList.add(map);
}
} else {
}
} catch (JSONException e) {
e.printStackTrace();
}
return null;
}
protected void onPostExecute(String file_url) {
// dismiss the dialog after getting all products
pDialog.dismiss();
// updating UI from Background Thread
runOnUiThread(new Runnable() {
public void run() {
/**
* Updating parsed JSON data into ListView
* */
ListAdapter adapter = new SimpleAdapter(
AllProductsActivity.this, productsList,
R.layout.list_row, new String[] { TAG_PID,
TAG_NAME, TAG_PRICE, TAG_IMAGE1 },
new int[] { R.id.pid, R.id.name, R.id.price,
R.id.thumbnail });
// updating Listview
setListAdapter(adapter);
}
});
}
}
}
我已经在列表适配器中传递了 image1
路径,并且我已经在 .xml 文件中获取了图像视图。
但我没有得到蚂蚁图像。
list_row.xml containg image view:
<ImageView
android:id="@+id/thumbnail"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_alignParentLeft="true"
android:layout_marginRight="8dp" />
如何在 imageview 中显示图像?
您需要创建自定义适配器、扩充行布局并从布局中检索 ImageView。然后你可以像这样以编程方式设置你的ImageView:
File imgFile = new File(yourImagePath);
if(imgFile.exists()){
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
yourImageView.setImageBitmap(myBitmap);
}
创建您自己的适配器的教程:http://www.vogella.com/tutorials/AndroidListView/article.html
我认为您将与 JSON 一起工作, 并从服务器加载图片,
如果是,我会建议您使用任何图像加载器,例如通用图像加载器。
Picasso 在另一个线程中下载图像并为您管理:
- 同时图像仍在下载中的占位符
- 调整大小
- cropping/centering/scaling
- 缓存(不必每次都下载图片)
- 它甚至 "image fade in",现在 popular/normal
非常简单,举个例子:
Picasso.with(context)
.load(url)
.placeholder(R.drawable.placeholder)
.resize(imgWidth, imgHeight)
.centerCrop()
.into(image);
下载 picasso jar 文件并添加到 android 首先构建应用程序 jar:
现在只需从 json
获取您的 urlif(response.login_data.avtar!=null &&response.login_data.avtar.length()>0) {
String photo=response.login_data.avtar.toString();
infoLog("avatar"+photo);
String url=App.WEB_PHOTO_URL+photo;
infoLog("avatar url"+url);
Picasso.with(HealthProfile.this).load(url).into(img);
}
else {
Picasso.with(HealthProfile.this).load(R.drawable.user).into(img);
}
您需要执行以下步骤:
1) 您需要实现一个自定义适配器,该适配器将根据该行 URL 上相应的 URL 延迟加载图像来填充图像
2)实现一个可以下载图像并在完成后刷新图像视图的 LazyLoader
3)调用自定义适配器的getView方法时调用LazyLoading
4) 在 OnPostExecute 中调用您的自定义适配器,而不是您的 Listadapter
5) 或者为了使 LazyLoading 部分更容易,您的代码使用 Universal Image Loader
ImageView imageView=(ImageView)findViewById(R.id.animage);
Uri imageUri = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM);
if (imageUri != null) {
String filePath = null;
filePath = imageUri.getPath();
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 8;
Bitmap bitmap = BitmapFactory.decodeFile(filePath,options);
imageView.setImageBitmap(bitmap);
}
您可以简单地使用 Picasso 库,一个强大的图像下载和缓存库 Android。
它提供了超级简洁的语法,因此您可以在 none 混淆的情况下使用它。
例如,在您的适配器中,您可以这样尝试:
首先,如果你使用 SimpleAdapter,ViewBinder 是你应该知道的。详情见http://developer.android.com/reference/android/widget/SimpleAdapter.ViewBinder.html
然后,在自己的ViewBinder的setViewValue中,添加如下代码即可:
Picasso.with(context).load(img_path).into(imgView)
或者,如果您自定义自己的适配器,请在覆盖的 getView 函数中添加代码。
最后,它会在您的图像视图中显示图像。
关于毕加索的更多细节:http://square.github.io/picasso/
Universal Image Loader是您的另一个选择,它也有很多用户。它更可定制。参见:https://github.com/nostra13/Android-Universal-Image-Loader
为时已晚,但也许它可以帮助某人。
如果您可以在项目中使用一些图像加载库,只需使用此自定义图像视图允许设置 url 来自 xml.
因为您可以从 xml 设置 url,所以可以直接将您的 link 变量绑定到 imageview。
创建自定义图像视图。
class MyImageView : ImageView {
var url: String = ""
set(value){
field = value
Glide.with(this).load(value).into(this)
}
constructor(context: Context) : super(context)
constructor(context: Context, attrs : AttributeSet) : super(context,attrs){
val array = context.obtainStyledAttributes(attrs, R.styleable.MyImageView)
val url = array.getString(R.styleable.MyImageView_url)
if(url!=null){
Glide.with(this).load(url).into(this)
}
array.recycle()
}
constructor(context: Context, attrs: AttributeSet , defStyleAttr : Int) : super(context, attrs, defStyleAttr)
}
在attr.xml
中添加这个<declare-styleable name="MyImageView">
<attr name="url" format="string" />
</declare-styleable>
在xml
中使用<package.path.MyImageView
android:id="@+id/image_company_logo"
android:scaleType="fitCenter"
android:layout_width="match_parent"
android:layout_height="80dp"
android:contentDescription="logo"
app:url="@{invoice.invoiceLogoLink}"/> //for data binding purpose
了解更多信息here