2014-07-02から1日間の記事一覧

Activityから特定のViewを削除する(GONEではないよ)

ViewGroup p = (ViewGroup) view.getParent(); p.removeView(view);

AndroidでTimerを実装してみる

俺のTimerTaskクラス public class MyTimer extends TimerTask { public Context context; public Handler handler = new Handler(); public MyTimer(Context context) { this.context = context; } @Override public void run() { handler.post(new Runnabl…