diff -r eb9b25dea4af -r 2a8bdfc5b036 project_files/Android-build/DataPackage/src/org/xeli/dataapk/MainActivity.java --- a/project_files/Android-build/DataPackage/src/org/xeli/dataapk/MainActivity.java Tue Jul 05 18:21:19 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -package org.xeli.dataapk; - -import android.app.Activity; -import android.os.Bundle; -import android.view.View; -import android.view.View.OnClickListener; -import android.widget.Button; - -public class MainActivity extends Activity { - - private MainActivity thisActivity = this; - - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.main); - - Button b = (Button)findViewById(R.id.startCopy); - b.setOnClickListener(startCopyClicker); - } - - private OnClickListener startCopyClicker = new OnClickListener(){ - public void onClick(View arg0) { - AssetsToSDCard runnable = new AssetsToSDCard(thisActivity, false, "/sdcard"); - Thread t = new Thread(runnable, "Assets2SDCard - Thread"); - t.start(); - } - - }; - -} \ No newline at end of file