0

したがって、SMSを受信したときに画面にダイアログを表示し、5秒後に画面から削除したいだけでなく、それをクリックしてタイマーをキャンセルして画面に表示したままにすることもできます。だから私はここにいくつかのオプションがあることを学びました. Handler、Timer、または AlarmManager (他にもありますか?) を使用できますが、私の場合は何が最適でしょうか? 最適なオプションの使用方法の例を挙げていただけますか?

4

2 に答える 2

1
  • Facebookチャットでバブルビューのようなものが必要なので、これを行う簡単な例を次に示しますが、ソリューションをカスタマイズする必要があります:

次のようなビューのレイアウトを作成することから始めます。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:color/black">

<TextView
    android:id="@+id/textView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:lines="4"
    android:textColor="@android:color/white" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/exit_button"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textColor="@android:color/white"
        android:text="Exit" />

    <Button
        android:id="@+id/stay_button"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textColor="@android:color/white"
        android:text="Stay" />

</LinearLayout>

ビューを構築するためのサービスを作成します。

import android.app.Service;
import android.content.Intent;
import android.graphics.PixelFormat;
import android.os.Handler;
import android.os.IBinder;
import android.util.Log;
import android.view.Gravity;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnTouchListener;
import android.view.WindowManager;
import android.view.WindowManager.LayoutParams;
import android.widget.TextView;

public class BubbleViewService extends Service
{
    private WindowManager       windowManager                   = null;
    private View                rootView                        = null;
    private Intent              intent                          = null;
    private int                 timeToExit                      = 5000;
    private boolean             autoExitFlag                    = true;

@Override
public IBinder onBind(Intent intent)
{
    return null;
}

@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
    this.intent = intent;
    Log.v("BubbleViewService", "onStartCommand");
    iniView();
    return super.onStartCommand(intent, flags, startId);
}

@Override
public void onCreate()
{
    super.onCreate();
    Log.v("BubbleViewService", "onCreate");
}

private void iniView()
{
    windowManager = (WindowManager) getSystemService(WINDOW_SERVICE);
    rootView = View.inflate(this, R.layout.my_dialog, null);

    final WindowManager.LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT, 
            LayoutParams.WRAP_CONTENT, 
            WindowManager.LayoutParams.TYPE_PHONE, 
            WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE, 
            PixelFormat.TRANSLUCENT);

    params.gravity  = Gravity.TOP|Gravity.LEFT;
    params.x = 0;
    params.y = 100;

    TextView tvMessage = (TextView) rootView.findViewById(R.id.textView1);
    if(intent!=null)
    {
        String message = intent.getStringExtra("Msg");
        tvMessage.setText(message);
    }

    windowManager.addView(rootView, params);

    startExitHanlder();

    rootView.findViewById(R.id.exit_button).setOnClickListener(new OnClickListener()
    {

        @Override
        public void onClick(View v)
        {
            BubbleViewService.this.stopSelf();
        }
    });

    rootView.findViewById(R.id.stay_button).setOnClickListener(new OnClickListener()
    {

        @Override
        public void onClick(View v)
        {
            autoExitFlag = false;
        }
    });

    rootView.setOnTouchListener(new OnTouchListener()
    {
        private int initialX;
        private int initialY;
        private float initialTouchX;
        private float initialTouchY;
        @Override
        public boolean onTouch(View v, MotionEvent event)
        {
            switch(event.getAction())
            {
            case MotionEvent.ACTION_DOWN:
                initialX = params.x;
                initialY = params.y;
                initialTouchX = event.getRawX();
                initialTouchY = event.getRawY();
                return true;
            case MotionEvent.ACTION_UP:
                return true;
            case MotionEvent.ACTION_MOVE:
                params.x = initialX + (int)(event.getRawX() - initialTouchX);
                params.y = initialY + (int)(event.getRawY() - initialTouchY);
                windowManager.updateViewLayout(rootView, params);
                return true;
            }
            return false;
        }
    });
}
@Override
public void onDestroy()
{
    super.onDestroy();
    if(rootView!=null) windowManager.removeView(rootView);
}

private void startExitHanlder()
{
    Handler handler = new Handler();

    handler.postDelayed(new Runnable()
    {

        @Override
        public void run()
        {
            if(autoExitFlag==true) BubbleViewService.this.stopSelf();

        }
    }, timeToExit);

}

}

このサービスをマニフェスト xml ファイルに追加する必要があります。

<service
    android:name="your.pkg.path.BubbleViewService"
    android:label="My Service" >

最後に、アプリケーション アクティビティから、必要に応じて次のコードを使用してこのサービスを開始します。

Intent intent = new Intent(MainActivity.this,BubbleViewService.class);
            intent.putExtra("Msg", "Blah blah blah ... what ever");
            MainActivity.this.startService(intent);

アプリケーションの要件に応じてサービスをカスタマイズできると述べたように、この例では、自動終了フラグが true の場合に 5 秒後にサービスを停止するハンドラーを追加しました。

于 2013-08-28T21:51:55.407 に答える