1

私は一日中この問題に取り組んでおり、髪を抜く準備ができています。こことWebで、これは(UIスレッドではなく)スレッド内のビューで何かを行おうとしたことが原因であるという回答をいくつか見つけました。しかし、私はこれまでに見たすべてのアイデア(ハンドラー/新しいスレッド)を試しましたが、それでも機能させることができません。私は趣味として長年Cでプログラミングしていましたが、今はJava/Androidの初心者です。EclipseとAndroid2.1プラットフォームを使用してプログラミングしています。アプリケーションをできるだけ多くのAndroidスマートフォンで動作させたいので、使用しているすべての機能はAPI 1と互換性があると思います。AsyncTaskと呼ばれるものもありますが、問題が発生します。古い電話を持っている人?

これが私のアプリの機能です。ボタンをクリックすると、アプリはWebサイトにオンラインでアクセスし、xml/rssフィードをダウンロードします。次に、それを解析し、私が作成したカスタムアダプタを使用してデータをリストビューに配置します。ダウンロードと解析には1秒から15秒かかることがあるので、進行状況ダイアログを追加したいと思いました。それを追加した後、この投稿のタイトルにエラーメッセージが表示されるようになりました。アプリはダウンロードを正常に実行します(Web上の私の例のxmlファイルには8つのレコードがあるため、非常に小さいです)が、リストビューが表示される前にエラーが表示されます。したがって、ビューのどの部分がエラーの原因であるかを正確に把握し、それを修正する方法を知る必要があると思います。

コードは次のとおりです(過去数時間からすべてのテストコードを削除したので、クリーンで、すべての人と私を混乱させることはありません):

@SuppressWarnings("serial")
public class ClubMessageList extends ListActivity implements Serializable
{
private static final String TAG = "DGMS News";
private ArrayList<CMessage> m_messages = null;
private MessageAdapter m_adapter;
private ProgressDialog m_ProgressDialog = null; 
private Runnable downloadMessages;
// Need handler for callbacks to the UI thread
final Handler mHandler = new Handler();

@SuppressWarnings("unchecked")
@Override
public void onCreate(Bundle icicle)
{
    Log.i(TAG, "Starting the ClubMessageList activity");
    super.onCreate(icicle);

    setContentView(R.layout.list);
    setTitle("DGMS News - Clubs");

    try
    {
        // check to see if we already have downloaded messages available in the bundle
        m_messages = (ArrayList<CMessage>) ((icicle == null) ? null : icicle.getSerializable("savedMessages"));

        // if there are no messages in the bundle, download them from the web and then display them
        if (m_messages == null)
        {
            m_messages = new ArrayList<CMessage>();
            this.m_adapter = new MessageAdapter(this, R.layout.row_club, (ArrayList<CMessage>) m_messages);
            setListAdapter(this.m_adapter);

            downloadMessages = new Runnable(){
                public void run() {
                    getMessages();
                }
            };
            Thread thread =  new Thread(null, downloadMessages, "DownloadMessages");
            thread.start();
            m_ProgressDialog = ProgressDialog.show(ClubMessageList.this,    
                  "Please wait...", "Retrieving 2010 Show data ...", true);
        }
        else // messages were already downloaded, so display them in the listview (don't download them again)
        {
            Log.i("DGMS News", "Starting activity again. Data exists so don't retrieve it again.");
            m_adapter = new MessageAdapter(this, R.layout.row_club, (ArrayList<CMessage>) m_messages);
            this.setListAdapter(m_adapter);
        }
    }
    catch (Throwable t)
    {
        Log.e("DGMS News",t.getMessage(),t);
    }
}

private Runnable returnRes = new Runnable()
{
    public void run()
    {
        if(m_messages != null && m_messages.size() > 0)
        {
            m_adapter.notifyDataSetChanged();
            for(int i=0;i<m_messages.size();i++)
                m_adapter.add(m_messages.get(i));
        }
        m_ProgressDialog.dismiss();
        m_adapter.notifyDataSetChanged();
    }
};

private void getMessages()
{
    try
    {
        m_messages = new ArrayList<CMessage>();
        ClubFeedParser parser = ClubFeedParserFactory.getParser();
        m_messages = parser.parse();
        for(int i = 0; i < m_messages.size(); i++)
            m_adapter.add(m_messages.get(i));
    }
    catch (Exception e)
    { 
        Log.e("DGMS News", e.getMessage());
    }
    runOnUiThread(returnRes);
}

protected void onSaveInstanceState(Bundle outState)
{
    super.onSaveInstanceState(outState);
    outState.putSerializable("savedMessages", (Serializable) m_messages);
}

@Override
protected void onListItemClick(ListView l, View v, int position, long id)
{
    super.onListItemClick(l, v, position, id);
    Intent intent = new Intent(ClubMessageList.this, ClubDetails.class);
    // Add all info about the selected club to the intent
    intent.putExtra("title", m_messages.get(position).getTitle());
    intent.putExtra("location", m_messages.get(position).getLocation());
    intent.putExtra("website", m_messages.get(position).getLink());
    intent.putExtra("email", m_messages.get(position).getEmail());
    intent.putExtra("city", m_messages.get(position).getCity());
    intent.putExtra("contact", m_messages.get(position).getContact());
    intent.putExtra("phone", m_messages.get(position).getPhone());
    intent.putExtra("description", m_messages.get(position).getDescription());

    startActivity(intent);
}

private class MessageAdapter extends ArrayAdapter<CMessage> implements Serializable
{
    private ArrayList<CMessage> items;

    public MessageAdapter(Context context, int textViewResourceId, ArrayList<CMessage> items)
    {
        super(context, textViewResourceId, items);
        this.items = items;
    }

    public View getView(int position, View convertView, ViewGroup parent)
    {
        View v = convertView;
        if (v == null)
        {
            LayoutInflater vi = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(R.layout.row_club, null);

            CMessage m = items.get(position);
            if (m != null)
            {
                TextView ltt = (TextView) v.findViewById(R.id.ltoptext);
                TextView rtt = (TextView) v.findViewById(R.id.rtoptext);
                TextView lbt = (TextView) v.findViewById(R.id.lbottext);

                if (ltt != null)
                    ltt.setText(m.getTitle());

                if (rtt != null)
                    rtt.setText(m.getLocation());

                if (lbt != null)
                    lbt.setText(m.getCity() + ", CO");

                //if (rbt != null)
                    ; // not used in this list row
            }
        }
        return v;
    }
}
}

私が言ったように、数日前に別のWebサイトで見つけた進行状況ダイアログのものを追加するまで、そのコードはすべて正常に機能していました。

スレッドやハンドラーなどを調べるためにAndroidDevelopersのWebサイトにアクセスしたことがありますが、すべての助けに感謝します。それは私をますます混乱させました。実際のコード変更は素晴らしいでしょう。:-)今日、たくさんのウェブサイトを見た後、頭が痛いです。

ありがとう!

ボブ

4

2 に答える 2

2
              runOnUiThread(new Runnable() {
            public void run() {
                  m_adapter.notifyDataSetChanged();

                  m_adapter.add(m_messages.get(i));

                 m_ProgressDialog.dismiss();
                 m_adapter.notifyDataSetChanged();


            }
        });

すべてのUiコードはrunOnUiThreadに入れる必要があります。取得するエラーは、アクティビティUIスレッド以外のスレッドからUIを更新しようとしていることです。

コード内のこのスレッドが問題の原因です。

               private Runnable returnRes = new Runnable()
             {
                public void run()
                {
              if(m_messages != null && m_messages.size() > 0)
             {
                m_adapter.notifyDataSetChanged();
                for(int i=0;i<m_messages.size();i++)
                m_adapter.add(m_messages.get(i));
              }
           m_ProgressDialog.dismiss();
           m_adapter.notifyDataSetChanged();
         }
          };
于 2011-04-11T03:38:43.613 に答える
0

AsyncTaskを使用します。この時点でAndroid1.0/ 1.1を使用している電話はほとんどありません(Android <1.5で出荷された唯一の電話はHTCG1であり、ほとんどの電話はかなり前にOTAにアップグレードされました)。これらのデバイスを本当にサポートする必要がある場合は、同じを使用できますUserTask。詳細については、この記事を参照してください。また、メインスレッドからUIを更新することを確認するための約12のSOの質問を参照してください。

于 2011-04-11T03:21:59.310 に答える