- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
美好的一天,我正在尝试通过异步任务显示 ListView ,但在显示的 ListView 中取得的成功有限。情况是这样的,我有一个已经显示的 Activity ,当用户按下按钮时,它开始执行 gps Activity 以通过异步任务获取用户位置。现在我想显示一个包含地理编码器结果的 ListView ,以便用户可以选择他想要的位置,然后它会更新回 Activity 中的 TextView 。无法显示此 ListView 。它根本不显示。
相关代码如下:
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.view_location);
}
异步任务类:
class locationTask extends AsyncTask<Object, Void, List<Address> > {
List<Address> addresses;
ProgressDialog progressDialog;
Activity location_activity;
public locationTask(Activity activity){
location_activity = activity;
}
protected void onPreExecute(){
progressDialog = ProgressDialog.show(LocationViewer.this, "", "Getting GPS information Location here");
}
protected List<Address> doInBackground(Object... params){
Log.d(TAG, "am in doinbackground now");
addresses = doGeoCode(globalLocation);
int count = addresses.size();
Log.d(TAG, "count in doinbackground = " + count);
Log.d(TAG, "am out of doinbackground now");
return null;
}
@Override
protected void onPostExecute(List<Address> address){
progressDialog.dismiss();
int count = addresses.size();
Log.d(TAG, "count = " + count);
Log.d(TAG, "am in PostExecute now");
locationAdapter adapter = new locationAdapter(LocationViewer.this, android.R.layout.simple_list_item_1, addresses);
adapter.notifyDataSetChanged();
list.setAdapter(adapter);
}
}
doGeocode 方法:
public List<Address> doGeoCode(Location location){
globalLocation = location;
double newlatitude = globalLocation.getLatitude();
double newlongitude =globalLocation.getLongitude();
Geocoder geocode = new Geocoder(this, Locale.getDefault());
try{
addresses = geocode.getFromLocation(newlatitude, newlongitude, 1);
} catch(IOException e){}
return addresses;
//return addresses;
}
适配器类:
class locationAdapter extends ArrayAdapter<Address> {
Context mycontext;
public locationAdapter(Context context,int textViewResourceId, List<Address> addresses) {
super(context,textViewResourceId, addresses);
mycontext = context;
}
@Override
public View getView(int position, View convertView, ViewGroup parent){
/*View row = convertView;
if(row == null){
LayoutInflater inflater = getLayoutInflater();
row = inflater.inflate(R.layout.view_list, parent, false);
}*/
int maxAddressLineIndex = getItem(position).getMaxAddressLineIndex();
String addressline = "";
for(int j=0; j <= maxAddressLineIndex; j++){
addressline += getItem(position).getAddressLine(j) + ",";
}
TextView rowAddress = new TextView(mycontext);
rowAddress.setText(addressline);
return rowAddress;
}
}
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
StringBuilder sb = new StringBuilder();
sb.append(((Address)parent.getItemAtPosition(position)).getAddressLine(position)).append(",");
sb.append(((Address)parent.getItemAtPosition(position)).getAdminArea()).append(";");
sb.append(((Address)parent.getItemAtPosition(position)).getPostalCode()).append(";");
sb.append(((Address)parent.getItemAtPosition(position)).getCountryName());
address = sb.toString();
}
日志:
11-18 11:47:18.538: VERBOSE/LocationManagerService(1350): requestLocationUpdates
11-18 11:47:18.548: DEBUG/WifiService(1350): enable and start wifi due to updateWifiState
11-18 11:47:18.588: INFO/System.out(1459): [INFO:467227473]: LogSource: Running flush
11-18 11:47:18.588: INFO/System.out(1459): [INFO:467227475]: LogSource: Sending payload [bytes=247]
11-18 11:47:18.648: INFO/System.out(1459): [INFO:467227537]: LogSource: Response [http=200,length=219]
11-18 11:47:18.648: INFO/System.out(1459): [INFO:467227538]: LogSource: Read id 119, status code 200
11-18 11:47:18.688: DEBUG/InputManagerService(1350): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@408a9630
11-18 11:47:18.858: DEBUG/SurfaceFlinger(1350): layer=0xb8fdb8 is not in the purgatory list
11-1811:47:19.529: INFO/wpa_supplicant(1548): got scan complete
11-18 11:47:19.529: INFO/wpa_supplicant(1548): wpa_supplicant_get_scan_results:return scan results2
11-18 11:47:19.529: INFO/wpa_supplicant(1548): AP:ssid[ICYSPICY],rssi[-53],BSSID=00:1c:df:73:b2:6c
11-18 11:47:19.529: INFO/wpa_supplicant(1548): AP:ssid[virginmedia2196134],rssi[-91],BSSID=c4:3d:c7:41:12:f3
11-18 11:47:19.529: INFO/wpa_supplicant(1548): AP:ssid[ICYSPICY],rssi[-85],BSSID=00:24:b2:b4:8b:f8
11-18 11:47:19.529: INFO/wpa_supplicant(1548): Received 950 bytes of scan results (3 BSSes)
11-18 11:47:19.529: INFO/wpa_supplicant(1548): wpa_driver_wext_get_scan_results---
11-18 11:47:19.549: DEBUG/GpsLocationProvider(1350): GetGpsInterface+
11-18 11:47:19.549: DEBUG/GpsLocationProvider(1350): GetGpsInterface-
11-18 11:47:19.549: DEBUG/lib_locapi(1350): loc_eng_inject_location, accuracy = 56.0
11-18 11:47:19.569: DEBUG/AutoSetting(2277): service - mLocationListener: onLocationChanged() location = Location[mProvider=network,mTime=1321616839556,mInfo=-22.2383714333463.40099234999997,mAccuracy=56.0
11-18 11:47:19.569: DEBUG/AutoSetting(2277): service - handleMessage() incoming message, what:1
11-18 11:47:19.569: DEBUG/AutoSetting(2277): service - mLocationListener: onLocationChanged() location = Location[mProvider=network,mTime=1321616839556,mInfo=-22.2383714333463.40099234999997,mAccuracy=56.0
11-18 11:47:19.569: DEBUG/AutoSetting(2277): Util - isSetupWizardCompleted(): true
11-18 11:47:19.569: DEBUG/AutoSetting(2277): Util - wifi connected
11-18 11:47:19.569: DEBUG/AutoSetting(2277): service - processLocationBundle() distance to current is less than 1000.0m, bypass update
11-18 11:47:19.569: DEBUG/AutoSetting(2277): service - handleMessage() within range1
最佳答案
我刚遇到同样的问题并解决了,实际上你只需要这个:
adapter.notifyDataSetChanged();
并且不需要这个:
runOnUIThread(new Runable(){
@Override
public void run(){
adapter.notifyDataSetChanged();
}
};
AsyncTask 与主 UI 线程配合良好。
关于android - 如何从 asyncTask onPostExecute() android 填充 listView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8181789/
当我使用 new GiveMeJson2.execute(ref_id).get() 调用异步类时, 我的应用程序进入 doInBackground,创建一个 JSON 字符串并返回它。 此时,我认为
我正在尝试在后台下载一些文件,为此我使用了下载管理器并制作了此方法: /*** media download ***/ public long mediaDownload(ArrayList
我在尝试使用 onPostExecute 来触发这段代码时遇到问题,我对 java 尤其是多线程很陌生,所以如果我正在做的事情完全错误,请随时纠正我...需要学习. 所以问题是这样的: public
以下代码是我出于 Intent 而添加的代码,结果是从我的login.php 返回的内容。但它无法比较成功与否。在任何情况下它都不会进入 if 循环。但它在警报对话框中显示“登录成功”。 @Overr
字符串 descript 的内容显示在 logcat 中,没有任何问题,但不会显示在 OnPostExecute 对话框中的 TextView 上。这是一个空指针异常。我不知道为什么,因为 episo
当我运行我的应用程序时,onPostExecute似乎没有被调用。它没有像应有的那样填充到 UI 中。另外,关于DoInBackground ,任何超过 for 循环的日志消息: for (int i
我有一个单独的类(不是 Activity)来管理图像及其属性。 在这个类(Image.class)中,我还创建了一个 AsynkTask 来从网络下载位图。一切正常,除了 AsyncTask 继续运行
在 php 脚本的支持下,我有一段代码在 Async Task 中运行。我只想检查我的数据库中是否存在电子邮件 ID。我想显示 toast :“电子邮件已存在”(如果在数据库中)。否则另一个 toas
所以我创建了一个 web 服务调用类,它调用我在 AsyncTask 上扩展的 web 服务: public class WebServiceLoginCall extends AsyncTask{
我有一个扩展 AsyncTask 的类,它旨在用作我的应用程序的通用任务管理器类。 问题:奇怪的行为是进度对话框出现,但从未被关闭。 我确信每个任务实例都会调用 onPostExecute(),因为任
更新,请见下文。 如何将我的类 LocationData 和我的 ArrayList listOfObjects 返回到 onPostExecute()?我想在我的 UI 中使用它,现在它在 Asyn
我正在尝试获取 onPostExecute()完成 doInBackground() 后调用的方法方法,但它没有被调用。我该如何解决这个问题? 我已经调试过了,可以看到ArrayList data里面
我有一些控制权,因此我做了一些线程。我想用 asycntask 将一个屏幕的加载栏显示到另一个屏幕。我的问题是加载栏正在快速显示和消失,然后在没有加载的情况下等待同一个屏幕很多bar.And 一段时间
我在 Android 应用程序上做一个登录系统,当我输入错误的帐户时,onPostExecute 方法返回正确的失败消息,但是当我输入一个现有帐户并且登录正确后它仍然是相同的失败消息,我不明白为什么!
public static class TestTask extends AsyncTask { private String stacktrace; public TestTask
我有一个运行良好的 AsyncTask 类,但在这个类中,我在 onPreExecute 中有一个 ProgressDialog,它工作正常,但我需要在完成进程对话框关闭时,我将代码放在 onPost
我不知道如何找出这个空指针异常发生的位置。 按照 Google Play 的建议,崩溃只在用户的物理设备上发生过一次(到目前为止)——我无法在调试环境中重现它。 Google Play 给我的 Sta
我尝试使用此函数返回对象数组: public static JSONEvent[] invokeFunction(String funName, String requestContent) {
我有一个 Activity (RecipiesActivity),通过单击我的应用程序主 Activity 的“下一步”按钮打开。 在 RecipiesActivity onCreate 中,我想在
我有一个看起来像这样的类: internal class MyClass : AsyncTask>>> { protected override void OnPostExec
我是一名优秀的程序员,十分优秀!