Android Open Source - DragListView Base Activity






From Project

Back to project page DragListView.

License

The source code is released under:

Apache License

If you think the Android project DragListView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.czl.struct.activity;
/*from  w  w  w.  java 2  s. c  om*/
import android.app.Activity;
import android.os.Bundle;
import android.os.Message;

/**
 * ????:    BaseActivity
 * ????:    ????
 * @author   ziluncao
 *
 */
public abstract class BaseActivity extends Activity {
      
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

    public abstract void init();

    public abstract void findViewById();

    public abstract void Message(Message msg);

    @Override
    protected void onUserLeaveHint() {
        super.onUserLeaveHint();
    }
}




Java Source Code List

com.czl.struct.activity.BaseActivity.java
com.czl.struct.activity.MainActivity.java
com.czl.struct.adapter.DemoAdapter.java
com.czl.struct.interfaces.DragItemChangeListener.java
com.czl.struct.widget.DragListView.java