1

非同期タスクを使用してビデオファイルをアップロードしています。進行状況を追跡するために、ステータスバーで通知を実行しています。通知は正しく機能し、更新されますが、ステータスバーがクラッシュし、電話を再起動する必要があるという重大なパフォーマンスの問題が発生します。私のコードは次のとおりです。

    private class UploadMedia extends AsyncTask<Void, Integer, String> {

    private int NOTIFICATION_ID = 1;
    private CharSequence _contentTitle;
    private final NotificationManager _notificationManager = (NotificationManager) getActivity()
            .getApplicationContext()
            .getSystemService(
                    getActivity().getApplicationContext().NOTIFICATION_SERVICE);
    Notification _notification;
    PendingIntent _pendingIntent;

    private long totalSize;
    private int _progress = 0;
    private InputStreamBody isb;
    private File uploadFile;

    protected void onPreExecute() {

        Intent intent = new Intent();
        _pendingIntent = PendingIntent.getActivity(getActivity(), 0,
                intent, 0);

        _contentTitle = "Uploader " + mediaTitle + " til Skoletube";
        CharSequence contentText = _progress + "% complete";

        _notification = new Notification(R.drawable.icon, _contentTitle,
                System.currentTimeMillis());
        _notification.flags = _notification.flags
                | Notification.FLAG_ONGOING_EVENT;
        _notification.contentIntent = _pendingIntent;
        _notification.setLatestEventInfo(getActivity(), _contentTitle,
                contentText, _pendingIntent);

        _notificationManager.notify(NOTIFICATION_ID, _notification);

        Toast.makeText(getActivity(), "Starter upload", Toast.LENGTH_SHORT)
                .show();

        try {
            uploadFile = new File(_mediaFile.getPath());

            // FileInputStream is = new FileInputStream(uploadFile);
            //
            // ByteArrayOutputStream bos = new ByteArrayOutputStream();
            // byte[] b = new byte[1024];
            // int bytesRead;
            // while ((bytesRead = is.read(b)) != -1) {
            // bos.write(b, 0, bytesRead);
            // }
            // byte[] data = bos.toByteArray();
            //
            // isb = new InputStreamBody(new ByteArrayInputStream(data),
            // uploadFile.getName());

        } catch (Exception ex) {
            Log.i(TAG,
                    "Pre execute - oh noes... D: "
                            + ex.getLocalizedMessage());
        }

    }

    @Override
    protected String doInBackground(Void... params) {
        String result = "";
        try {
            // Inititate connectionparts
            HttpClient client = new DefaultHttpClient();
            HttpPost postRequest = new HttpPost(
                    "http://www.skoletube.dk/beta/api_userupload.php");

            CustomMultipartEntity multipartE = new CustomMultipartEntity(
                    HttpMultipartMode.BROWSER_COMPATIBLE,
                    new ProgressListener() {

                        @Override
                        public void transferred(long num) {
                            publishProgress((int) ((num / (float) totalSize) * 100));

                        }
                    });

            // Add the post elements
            String timestamp = String
                    .valueOf(System.currentTimeMillis() / 1000);
            String mode = "xml";
            String hashSum = Utils.md5(ActiveUser.getPartner() + timestamp
                    + ActiveUser.getInstance().getToken()
                    + ActiveUser.getInstance().getSecret()
                    + ActiveUser.getInstance().getUserID()
                    + spnChannel.getSelectedItem().toString()
                    + mediaDescribtion + "KEYWORDLOL"
                    + spnPublic.getSelectedItem().toString() + mediaTitle
                    + ActiveUser.getSharedkey());

            multipartE.addPart("uid", new StringBody(ActiveUser
                    .getInstance().getUserID()));
            multipartE.addPart("token", new StringBody(ActiveUser
                    .getInstance().getToken()));
            multipartE.addPart("token_secret", new StringBody(ActiveUser
                    .getInstance().getSecret()));
            multipartE.addPart("partner",
                    new StringBody(ActiveUser.getPartner()));
            multipartE.addPart("timestamp",
                    new StringBody(timestamp.toString()));
            multipartE.addPart("key", new StringBody(hashSum));
            multipartE.addPart("video_title", new StringBody(mediaTitle));
            multipartE.addPart("video_desc", new StringBody(
                    mediaDescribtion));
            multipartE.addPart("video_keyword",
                    new StringBody("KEYWORDLOL"));
            multipartE.addPart("video_privacy", new StringBody(spnPublic
                    .getSelectedItem().toString()));
            multipartE.addPart("video_channel", new StringBody(spnChannel
                    .getSelectedItem().toString()));
            multipartE.addPart("videoupload", new FileBody(uploadFile));

            postRequest.setEntity(multipartE);

            totalSize = multipartE.getContentLength();


            HttpResponse loginResponse = client.execute(postRequest);
            HttpEntity theEnt = loginResponse.getEntity();
            result = EntityUtils.toString(theEnt);

            Log.i(TAG, "Result: " + result);

        } catch (Exception ex) {
            Log.i(TAG,
                    "Do in background - oh noes... D: "
                            + ex.getLocalizedMessage());

        }
        return result;
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
        if (_notification == null)
            return;
        _progress = progress[0];
        _contentTitle = "Uploader " + mediaTitle + " til Skoletube";
        CharSequence contentText = _progress + "% complete";
        _notification.setLatestEventInfo(getActivity(), _contentTitle,
                contentText, _pendingIntent);
        _notificationManager.notify(NOTIFICATION_ID, _notification);
    }

    @Override
    protected void onPostExecute(String result) {
        _notificationManager.cancel(NOTIFICATION_ID);
    }

}

私はこれをHTCセンセーションでテストしています。通知バーを押すとすぐに問題が発生し、通知バーが拡大します。電話がフリーズし、タッチして、実際に通知バーに到達するか、通知バーがクラッシュするかを確認します。通知バーが表示されてもパフォーマンスの問題は解決せず、通知バーを再度閉じるのは開くのと同じくらい注意が必要です。私が考えているのは、送信された通知の更新の量が問題を引き起こしている可能性があるということですが、よくわかりません。

アイデアや提案に感謝します。

4

2 に答える 2

3

あなたの疑惑は正しいです。次の指示

publishProgress((int) ((num / (float) totalSize) * 100));

非常に頻繁に、短い間隔で呼び出されます。

そのような状況で私がすることは、私が表示したいpourcent avancementを保存し、それが最後の呼び出しから変更された場合にのみ送信することです。

このdoInBackgroundメソッドでは、次のような変数を宣言できます。

int lastPourcent = 0;

次に、transferredメソッドで:

int currentPoucent = (int) ((num / (float) totalSize) * 100);
if (currentPourcent > lastPourcent) {
    publishProgress(currentPourcent);
    lastPourcent = currentPourcent;
}

これにより、通知の更新メソッドの呼び出し回数が大幅に削減されます。

于 2012-02-22T16:53:32.060 に答える
2

Notification問題は、実行するたびにコードが更新でサービスをオーバーフローさせることですpublishProgress()。私がやったこと、そしてあなたがすべきことは、サービスをオーバーフローさせないソリューションを実装することですが、代わりにコードをNotification約5〜10パーセントごとに更新します。

于 2012-02-22T16:53:11.020 に答える