- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在将行动态添加到两列自定义 ListView 时遇到问题。 AsyncTask 从 Web 服务正确获取数据,但行未添加到 ListView。 add_to_list() 过程被 bing 调用,它正在显示参数,但 ListView 没有得到更新。请指导我代码有什么问题。
1) mail_row.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/cell_borders"
android:orientation="horizontal"
android:paddingBottom="1dip"
android:paddingTop="1dip"
android:weightSum="4"
tools:ignore="HardcodedText" >
<TextView
android:id="@+id/msgTime"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1.5"
android:text="Time" />
<TextView
android:id="@+id/msgText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="2.5"
android:text="Message" />
</LinearLayout>
2) 邮箱.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="5dp"
tools:ignore="HardcodedText" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
tools:ignore="UselessParent" >
<Button
android:id="@+id/bBack_Mail"
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Back"
tools:ignore="HardcodedText" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="@android:color/darker_gray" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/cell_borders"
android:orientation="horizontal"
android:paddingBottom="1dip"
android:paddingTop="1dip"
android:weightSum="4"
tools:ignore="HardcodedText" >
<TextView
android:id="@+id/tvTime_Mail"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:gravity="center"
android:text="Time" />
<TextView
android:id="@+id/tvText_Mail"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2.5"
android:gravity="center"
android:text="Message" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="@android:color/darker_gray" />
<ListView
android:id="@+id/lstMail_Mail"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
3) Mail_Box.java
import java.util.ArrayList;
import java.util.HashMap;
import org.json.JSONArray;
import org.json.JSONObject;
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast;
public class Mail_Box extends Activity implements View.OnClickListener {
private ListView list;
private ArrayList<HashMap<String, String>> mylist;
private HashMap<String, String> map;
private String url = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; //Here is a valid URL
private String urlSearch = null;
private Button bBack;
private ProgressDialog progressDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mail_box);
this.initializer();
SimpleAdapter mSchedule = new SimpleAdapter(this, mylist,
R.layout.mail_row,
new String[] { "mail_time", "mail_message" }, new int[] {
R.id.tvTime_Mail, R.id.tvText_Mail });
list.setAdapter(mSchedule);
this.urlSearch = this.url + "rashid";
MyTask runner = new MyTask();
runner.execute(this.url);
}
private void initializer() {
bBack = (Button) findViewById(R.id.bBack_Mail);
bBack.setOnClickListener(this);
list = (ListView) findViewById(R.id.lstMail_Mail);
mylist = new ArrayList<HashMap<String, String>>();
}
@Override
public void onClick(View v) {
finish();
}
private void add_to_list(String tm, String msg) {
//This message is shown properly
Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_LONG).show();
try {
map = null;
map = new HashMap<String, String>();
map.put("mail_time", tm);
map.put("mail_message", msg);
mylist.add(map);
} catch (Exception e) {
Toast.makeText(getApplicationContext(), "Error", Toast.LENGTH_LONG).show();
}
}
// --------------AsyncTask Class--------------------------------
private class MyTask extends AsyncTask<String, Void, String> {
private String msg = "";
private JSONParser jParser;
private JSONObject json;
private static final String TAG_DATA = "data";
private static final String TAG_TIME = "MAIL_TIME";
private static final String TAG_TYPE = "TYPE";
private static final String TAG_TEXT = "MSG_TEXT";
private JSONArray data = null;
@Override
protected void onPreExecute() {
// TODO Auto-generated method stub
super.onPreExecute();
progressDialog = ProgressDialog.show(Mail_Box.this,
"Loading Mails", "Please wait for a while.", true);
}
@Override
protected String doInBackground(String... urls) {
try {
this.jParser = new JSONParser();
this.json = jParser.getJSONFromUrl(urls[0]);
if (this.json != null)
msg = "DONE";
} catch (Exception e) {
e.printStackTrace();
}
Log.d("Response: ", this.msg);
return msg;
}
@Override
protected void onPostExecute(String msg) {
progressDialog.dismiss();
if (msg.equals("DONE")) {
try {
data = json.getJSONArray(TAG_DATA);
int i = data.length();
if (i == 0) {
Toast.makeText(getApplicationContext(),
"No record found.", Toast.LENGTH_SHORT).show();
} else {
for (int j = 0; j < i; j++) {
JSONObject c = data.getJSONObject(j);
String tm = c.getString(TAG_TIME);
String type = c.getString(TAG_TYPE);
String txt = c.getString(TAG_TEXT);
add_to_list(tm, txt);
}
}
} catch (Exception e) {
Toast.makeText(getApplicationContext(), "Error",
Toast.LENGTH_SHORT).show();
}
} else {
Toast.makeText(getApplicationContext(),
"Unable to search record.", Toast.LENGTH_SHORT).show();
}
}
}
}
最佳答案
动态加载数据时必须调用 adapter.notifyDataSetChanged()只需将适配器设为全局变量并将 add_to_list() 方法更改为
private void add_to_list(String tm, String msg) {
//This message is shown properly
Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_LONG).show();
try {
map = null;
map = new HashMap<String, String>();
map.put("mail_time", tm);
map.put("mail_message", msg);
mylist.add(map);
adapter.notifyDataSetChanged()
} catch (Exception e) {
Toast.makeText(getApplicationContext(), "Error", Toast.LENGTH_LONG).show();
}
}
关于android - Android中的多列自定义ListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20101658/
我有两个具有不同格式的相似数据的数据框 df1: Nodo X Y Z CTB3901 CTBX3901 CTBY3901 CTBZ3901
这个问题在这里已经有了答案: Using tuples in SQL "IN" clause (9 个回答) 关闭 8 年前。 我尝试获得一些满足特定条件的用户: SELECT * FROM use
我目前正在使用 MySQL (5.7) 来查询成员表。 当我执行如下查询时: SELECT fname, lname, added FROM Members WHERE ((fname, lname)
我正在使用 CSS 创建多个列,以提供与 Pinterest 界面类似的外观(例如,框列,但整齐地堆叠在彼此之下)。 这是我使用的代码: #feed-post-home .feed { -mo
我正在使用 VLookup 函数来查找列中存在的多个值。这工作得很好,但只需要很多时间,因为我在 Excel 表中有 100,000 行。 有什么办法可以加快这段代码的速度吗? 该代码基本上在列中查找
如果这个词正确的话,我有 4 列和 4 个不同的参数。每个参数大约有 3-5 个变量。我想做的是在维护不同列的同时创建 4 个不同参数的所有可能组合。因此,假设我有以下示例: **Column A |
我正在尝试使用 arrange_()使用字符串输入并按降序排列在其中一列中。 library(dplyr) # R version 3.3.0 (2016-05-03) , dplyr_0.4.3 #
我只是想知道是否有可以包含多列的 wpf 组合框控件? 如果没有,我需要使用什么 XAML 来实现这一目标? 如果可能的话,我只是在寻找一个基本的两列组合框, 谢谢 最佳答案 请引用这些链接 多列组合
我想使用 Select 根据第二个表中的值更新表中的多个列语句来获取这样的值: UPDATE tbl1 SET (col1, col2, col3) = (SELECT colA, colB, col
如果我们需要根据给定列的某些值集查询表,我们可以简单地使用 IN 子句。 但是如果需要基于多列执行查询,我们不能使用 IN 子句(在 SO 线程中 grepped)。 从其他 SO 线程,我们可以使用
我需要用分隔值拆分表中两列的值。 我的源表如下所示: 产品IDean_upc已批准21029618710103368021;8710103368038;87101033680141;0;1929236
我正在尝试在 WPF 中创建一个包含多列的 TreeView 。我很清楚,关于这个主题确实有很多问题。但是,他们在绑定(bind)数据时似乎采用了不同的方法。每个人似乎都设置了 itemssource
我正在尝试使用以下数据在 Excel 中创建数据透视表: 我试图得出的最终结果(使用枢轴)是这样的摘要: 但是我不知道如何让 Excel 计算/添加/考虑所有列。我可以为每个单独的字段/列创建一个数据
我正在尝试在 WPF 中创建一个包含多列的 TreeView 。我很清楚,关于这个主题确实有很多问题。但是,他们在绑定(bind)数据时似乎采用了不同的方法。每个人似乎都设置了 itemssource
如何在最多几列的每行返回 1 个值: 表名 [Number, Date1, Date2, Date3, Cost] 我需要返回这样的东西: [Number, Most_Recent_Date, Cos
我有两个数据框想要连接在一起(自行车骑行数据框和自行车站数据框)。 我一直在使用 pandas 库,但我似乎无法编写代码来完美地操作连接。最初,我只是加入关键“station_id”,但我发现最近更新
我有以下 csv 文件,我想要内部联接 CSV 1:Trip_Data.csv (250MB) head -2 rand_trip_data_1.csv medallion,hack_license,
我知道以前也有人问过类似的问题。但是,我的问题略有不同。我正在尝试跨多个列获取 merge_asof 的功能。这是数据集: import pandas as pd left = pd.DataFram
我有一个数据库,里面保存着客户的数据。我需要知道我们在各个城市和国家有多少客户。我必须用单个查询来完成它。 我的表是客户,我有城市和国家列(均为varchar),其中包含有关它的信息。 所需的查询输出
我需要左连接两个表:Cardealers 和Applications。 我想查看哪些信用卡经销商收到了哪些申请。 每个申请都会转发给三个发卡商,因此我的表结构具有以下 3 列:receiver_1、r
我是一名优秀的程序员,十分优秀!