- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序从服务器下载文本和图像并将它们显示在列表中我使用两个单独的适配器,一个用于文本,另一个用于图像。我不能将它们放在同一个适配器中,也不能将两个适配器放在同一个列表中。那么如何连接两个具有相同列表的适配器这是我的第一个适配器的一些代码
private class LoadService extends AsyncTask<String, Void, Void> {
private final HttpClient Client = new DefaultHttpClient();
private String Content;
private String Error = null;
private final String TAG = null;
private ProgressDialog Dialog = new ProgressDialog(mainpage.this);
ImageView imagee = (ImageView) findViewById(R.id.image);
String url = "images url";
String[] img = new String[1000];
// lv.setAdapter(new ImageLoader(, img));
protected void onPreExecute() {
Dialog.setMessage("Loading service..");
Dialog.show();
Dialog.dismiss();
}
protected Void doInBackground(String... urls) {
try {
HttpGet httpget = new HttpGet(urls[0]);
ResponseHandler<String> responseHandler = new BasicResponseHandler();
Content = Client.execute(httpget, responseHandler);
} catch (ClientProtocolException e) {
Error = e.getMessage();
cancel(true);
} catch (IOException e) {
Error = e.getMessage();
cancel(true);
}
return null;
}
protected void onPostExecute(Void unused) {
// Close progress dialog
Dialog.dismiss();
Log.e(TAG, "Raw output "
+ Content);
try {
// Load json data and display
JSONObject json = new JSONObject(Content);
JSONArray jre = json.getJSONArray("updates");
for (int j = 0; j < jre.length(); j++) {
JSONObject jobject = jre.getJSONObject(j);
String name11 = jobject.getString("title");
String description = jobject.getString("description");
String image = jobject.getString("image");
String total = url + image;
img[j] = total;
HashMap<String, String> contact = new HashMap<>();
// adding each child node to HashMap key => value
contact.put("title", name11);
contact.put("description", description);
contactList.add(contact);
}
} catch (JSONException e) {
e.printStackTrace();
}
ListAdapter adapter = new SimpleAdapter(mainpage.this, ContactList, R.layout.item, new String[]{"title", "description"}, new int[]{R.id.title, R.id.description});
lv.setAdapter(adapter);}
我的第二个适配器
public class loader extends ArrayAdapter {
public Context context;
private LayoutInflater inflater;
private String[] img;
public loader(Context context, String[] img) {
super(context, R.layout.item, img);
this.context = context;
this.img = img;
inflater = LayoutInflater.from(context);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (null == convertView) {
convertView = inflater.inflate(R.layout.item, parent, false);
}
ImageView imageView = (ImageView) convertView.findViewById(R.id.imageview);
Picasso.with(context).load(img[position]).into(imageView);
return convertView;
}
我使用
在列表中设置它 loader im=new loader(mainpage.this,img);
lv.setAdapter(im);
对不起我的长代码
最佳答案
您可以将 Arraylist 与模型(包含您的文本和图像 url 作为字符串)类一起使用,并将该 arraylist 传递给您的适配器。查看以下代码:
新建Product.java
public class Product{
private String yourText = "";
private String imgUrl= "";
public String getyourText () {
return yourText ;
}
public void setyourText(String yourText) {
this.yourText = yourText
}
public String getimgUrl() {
return imgUrl;
}
public void setimgUrl(String imgUrl) {
this.imgUrl = imgUrl;
}
}
现在你的 AsyncTask:
private LoaderAdapter mLoaderAdapter;
private ArrayList<Product> mArrayList = null;
Product mProduct;
private class LoadService extends AsyncTask<String, Void, Void> {
private final HttpClient Client = new DefaultHttpClient();
private String Content;
private String Error = null;
private final String TAG = null;
private ProgressDialog Dialog = new ProgressDialog(mainpage.this);
ImageView imagee = (ImageView) findViewById(R.id.image);
String url = "http://phone.tmsline.com/images/uploads/";
String[] img = new String[1000];
// lv.setAdapter(new ImageLoader(, img));
protected void onPreExecute() {
Dialog.setMessage("Loading service..");
Dialog.show();
Dialog.dismiss();
}
protected Void doInBackground(String... urls) {
try {
HttpGet httpget = new HttpGet(urls[0]);
ResponseHandler<String> responseHandler = new BasicResponseHandler();
Content = Client.execute(httpget, responseHandler);
} catch (ClientProtocolException e) {
Error = e.getMessage();
cancel(true);
} catch (IOException e) {
Error = e.getMessage();
cancel(true);
}
return null;
}
protected void onPostExecute(Void unused) {
// Close progress dialog
Dialog.dismiss();
Log.e(TAG, "Raw output "
+ Content);
try {
// Load json data and display
JSONObject json = new JSONObject(Content);
JSONArray jre = json.getJSONArray("updates");
mArrayList = new ArrayList<Product>();
for (int j = 0; j < jre.length(); j++) {
mProduct = new Product();
JSONObject jobject = jre.getJSONObject(j);
String name11 = jobject.getString("title");
String description = jobject.getString("description");
String image = jobject.getString("image");
String fullUrl = url + image;
mProduct.setyourText(name11);
mProduct.setimgUrl(fullUrl);
mArrayList.add(mProduct);
mProduct = null;
}
} catch (JSONException e) {
e.printStackTrace();
}
mLoaderAdapter = new LoaderAdapter (getApplicationContext(),mArrayList);
lv.setAdapter(mLoaderAdapter);}
最后是你的适配器类:
public class LoaderAdapter extends ArrayAdapter<Product> {
public Context context;
private ArrayList<Product> values;
private LayoutInflater inflater;
private String[] img;
public loader(Context context, ArrayList<Product> values) {
super(context, R.layout.item, img);
this.context = context;
this.values = values;
inflater = LayoutInflater.from(context);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (null == convertView) {
convertView = inflater.inflate(R.layout.item, parent, false);
}
ImageView imageView = (ImageView) convertView.findViewById(R.id.imageview);
TextView textView = (TextView) convertView.findViewById(R.id.yourtextview);
Product mProduct = values.get(position);
textView.setText(mProduct.getyourText());
Picasso.with(context).load(mProduct.getimgUrl()).into(imageView);
return convertView;
}
现在您可以将所有文本和图像绑定(bind)到同一个列表上,而无需为同一个列表使用 1 个适配器类。
干杯!
关于android - 将两个适配器设置到同一个列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42506983/
我有 3 个 AutoCompleteTextView,我想在它们上面注册 2 个 String[] 适配器。目前,我正在这样做: atw_from.setAdapter(new ArrayAdapt
我需要实现一个 recyclerView 来显示我对 Parse 的查询,所以我已经做到了: private class Pagination extends RecyclerView.OnScro
我对 BizTalk 相当陌生,目前我只是探索它的功能并了解不同部分(架构、编排、端口等)如何协同工作。我对其适配器有疑问: 不同的适配器是否已经随 BizTalk 服务器安装一起预装并准备好配置,或
我在 BizTalk 中测试 MQSC 适配器以与 Z/OS 主机上的队列通信时遇到问题。 测试场景:通过 Biztalk 发送消息时,我(强制)停止并启动主机 channel ,以模拟主机 IPL。
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我想用我的音频单元在iPhone上录制一条音频信号,该信号来自一条普通的3.5毫米音频电缆(例如,另一部iPhone作为声源)。 由于iPhone具有4端口耳机插孔,因此无法直接插入。 我尝试了不同种
[请参阅下面的更新] 我很难定义模式。我的同事说这是适配器模式。我不知道。我们陷入困境主要是因为我们想要正确命名我们的组件。 问题:是适配器模式吗?如果不是的话是什么?如果是其他事情,这是实现这个想法
我有点不熟悉Java KeyAdapter有效,并且使用 KeyAdapter 使用以下代码得到了意想不到的结果。当按下一个键而另一个键已按下时,就会出现此问题,无论 isKeyPressed() 是
我想知道如何通过 ORM 适配器使用 Node.js 在 MySQL 中创建多个表。我通过模型创建了一个表,即“us.js” module.exports = { identity: 'us'
我有一个 JavaFx 客户端。我正在使用一个具有 ObservableSet 作为字段的 bean 作为模型。我想将这些数据显示到 ListView 中,但我无法将我的字段类型更改为 Observa
我正在尝试在 native iOS 应用程序中实现基于表单的身份验证,但我需要在没有收到质询的情况下登录,我想打开一个表单并登录。我实现了一个包含 isCustomResponse 函数的 Chall
我正在尝试为我的迭代器和 const_iterator 类实现反向迭代器适配器,但遇到了一些麻烦。如果有人可以指导我解决这个问题,将不胜感激! 我的想法是我应该能够从我的 rbegin() 和 ren
使用 spring-integration-sftp,创建任意数量的入站 channel 适配器对象的推荐方法是什么?我的应用程序需要监视多个远程目录(1 到 n),直到运行时才知道。 最佳答案 当前
我正在尝试为我们自己的框架创建适配器。我们的框架使用自己的断言机制,因此我需要编写适配器。 适配器类非常简单,如下所示: public class AllureReportListener {
有没有什么方法可以使用命令行而不是使用 Worklight 控制台来部署 Worklight 适配器? (因为我的 worklight 服务器安装在 WAS 上,wsadmin 命令或类似的命令...
我想构建自己的自定义 log4j(网络)适配器来解决我的问题 that I posted here. 我查看了 log4j 的文档,但看不到开发人员在哪里/是否讨论如何执行此操作。 有人能给我指出正确
我使用消息驱动 channel 适配器从 weblogic JMS 队列接收作为字符串的 xml 消息,然后将此消息传递到 spring 集成 channel 以存储到数据库中,转换为不同的 xml,
有没有什么方法可以使用命令行而不是使用 Worklight 控制台来部署 Worklight 适配器? (因为我的 worklight 服务器安装在 WAS 上,wsadmin 命令或类似的命令...
我试图为 Android 制作一个聊天应用程序,所以我使用了 RecyclerView 。我的适配器有问题,我的聊天室收到的 JSON 响应显示为空白。我的代码是否遗漏了某些内容? 这是我的适配器类
如果这是重复的,我提前道歉。我对 Android 开发还是新手,并尝试寻找解决方案,但找不到有效的解决方案。 我正在创建一个待办事项应用程序并在我的适配器中收到此错误。 java.lang.NullP
我是一名优秀的程序员,十分优秀!