Index: /trunk/TagTracker/AndroidManifest.xml
===================================================================
--- /trunk/TagTracker/AndroidManifest.xml	(revision 3)
+++ /trunk/TagTracker/AndroidManifest.xml	(revision 4)
@@ -11,5 +11,5 @@
 	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
     <application
-        android:icon="@drawable/ic_launcher"
+        android:icon="@drawable/tag_accept"
         android:label="@string/app_name" 
         android:theme="@style/MyTheme">
Index: /trunk/TagTracker/gen/nl/deadpixel/tagtracker/beta/R.java
===================================================================
--- /trunk/TagTracker/gen/nl/deadpixel/tagtracker/beta/R.java	(revision 3)
+++ /trunk/TagTracker/gen/nl/deadpixel/tagtracker/beta/R.java	(revision 4)
@@ -13,13 +13,23 @@
     public static final class drawable {
         public static final int ic_launcher=0x7f020000;
+        public static final int tag_accept=0x7f020001;
+        public static final int tb_offstate=0x7f020002;
+        public static final int tb_onstate=0x7f020003;
+        public static final int toggle_button=0x7f020004;
     }
     public static final class id {
-        public static final int Screen=0x7f070000;
-        public static final int status=0x7f070003;
-        public static final int text=0x7f070001;
-        public static final int zend=0x7f070002;
+        public static final int Screen=0x7f080000;
+        public static final int add_note=0x7f080005;
+        public static final int add_uid=0x7f080004;
+        public static final int status=0x7f080002;
+        public static final int stopsend=0x7f080006;
+        public static final int text=0x7f080001;
+        public static final int zend=0x7f080003;
     }
     public static final class layout {
         public static final int main=0x7f030000;
+    }
+    public static final class menu {
+        public static final int lo_menu=0x7f070000;
     }
     public static final class string {
@@ -28,8 +38,10 @@
     }
     public static final class style {
+        public static final int ActionBar=0x7f060001;
+        public static final int ActionBar_Light=0x7f060003;
         /**  Any customizations for your app running on pre-3.0 devices here 
- Any customizations for your app running on post-3.0 devices here 
          */
         public static final int MyTheme=0x7f060000;
+        public static final int ToggleButton=0x7f060002;
     }
     public static final class xml {
Index: /trunk/TagTracker/res/drawable/toggle_button.xml
===================================================================
--- /trunk/TagTracker/res/drawable/toggle_button.xml	(revision 4)
+++ /trunk/TagTracker/res/drawable/toggle_button.xml	(revision 4)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_checked="true"
+       android:drawable="@drawable/tb_onstate" /> <!-- pressed -->
+ <item android:state_checked="false"
+       android:drawable="@drawable/tb_offstate" /> <!-- unchecked -->
+</selector>
Index: /trunk/TagTracker/res/layout/main.xml
===================================================================
--- /trunk/TagTracker/res/layout/main.xml	(revision 3)
+++ /trunk/TagTracker/res/layout/main.xml	(revision 4)
@@ -1,33 +1,37 @@
 <?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout
-    xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:id="@+id/Screen"
     android:layout_width="fill_parent"
-    android:layout_height="fill_parent"
-    android:id="@+id/Screen" >
-		 <TextView
-            android:id="@+id/text"
-            android:layout_width="fill_parent"
-            android:layout_height="wrap_content"
-            android:layout_above="@+id/zend"
-            android:layout_alignParentLeft="true"
-            android:layout_alignParentTop="true" />
-		 
-		 <Button
-            android:id="@+id/zend"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_above="@+id/status"
-            android:layout_alignParentLeft="true"
-            android:text="Verzenden" />
-		 
-        <ToggleButton
-            android:id="@+id/status"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_alignParentBottom="true"
-            android:layout_alignParentLeft="true"
-            android:onClick="onToggleClicked"
-            android:text="ToggleButton"
-            android:textOff="Start"
-            android:textOn="Stop" />
-    </RelativeLayout>
+    android:layout_height="fill_parent" >
+
+    <TextView
+        android:id="@+id/text"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        android:layout_alignParentLeft="true"
+        android:layout_alignParentTop="true" />
+
+
+
+    <ToggleButton
+        android:id="@+id/status"
+        style="@style/ToggleButton"
+        android:layout_width="match_parent"
+        android:layout_height="200dp"
+        android:layout_marginLeft="20dp"
+        android:layout_marginRight="20dp"
+        android:layout_alignParentLeft="true"
+        android:layout_centerVertical="true"
+        android:onClick="onToggleClicked"
+        android:textOff="START"
+        android:textOn="STOP" />
+
+    <Button
+        android:id="@+id/zend"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_alignParentBottom="true"
+        android:layout_alignParentLeft="true"
+        android:text="Verzenden" />
+
+</RelativeLayout>
Index: /trunk/TagTracker/res/menu/lo_menu.xml
===================================================================
--- /trunk/TagTracker/res/menu/lo_menu.xml	(revision 4)
+++ /trunk/TagTracker/res/menu/lo_menu.xml	(revision 4)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:id="@+id/add_uid"
+        android:title="UID Toevoegen"/>
+    <item android:id="@+id/add_note"
+        android:title="Note Toevoegen" />
+    <item android:id="@+id/stopsend"
+        android:title="Stop en Zenden" />
+        
+</menu>
Index: /trunk/TagTracker/res/values-v11/themes.xml
===================================================================
--- /trunk/TagTracker/res/values-v11/themes.xml	(revision 3)
+++ /trunk/TagTracker/res/values-v11/themes.xml	(revision 4)
@@ -1,6 +1,17 @@
 <?xml version="1.0" encoding="utf-8"?>
 <resources>
-    <style name="MyTheme" parent="@android:style/Theme.Holo">
+     <style name="ActionBar" parent="@android:style/Widget.Holo.ActionBar" />
+    <style name="MyTheme" parent="@android:style/Theme.Holo.Light">
         <!-- Any customizations for your app running on post-3.0 devices here -->
+        <item name="android:actionBarStyle">@style/ActionBar.Light</item>
+    </style>
+    <style name="ToggleButton" parent="@android:Widget">
+        <item name="android:background">@drawable/toggle_button</item>
+        <item name="android:textColor">#FF231f20</item>
+        <item name="android:textSize">50dp</item>
+    </style>
+    <style name="ActionBar.Light" parent="@style/ActionBar">
+        <item name="android:background">#FF03a9e7</item>
+        <item name="android:windowActionBarOverlay">true</item>
     </style>
 </resources>
Index: /trunk/TagTracker/src/nl/deadpixel/tagtracker/beta/TagTrackerActivity.java
===================================================================
--- /trunk/TagTracker/src/nl/deadpixel/tagtracker/beta/TagTrackerActivity.java	(revision 3)
+++ /trunk/TagTracker/src/nl/deadpixel/tagtracker/beta/TagTrackerActivity.java	(revision 4)
@@ -24,4 +24,6 @@
 import android.os.PowerManager.WakeLock;
 import android.util.Log;
+import android.view.Menu;
+import android.view.MenuInflater;
 import android.view.View;
 import android.widget.Button;
@@ -35,6 +37,4 @@
     private IntentFilter[] mFilters;
     private String[][] mTechLists;
-    private TextView mText;
-    private int mCount = 0;
     private FileHandler fh = new FileHandler();
     private boolean writeAllow = false;
@@ -55,6 +55,4 @@
         });
         mScreen = (RelativeLayout) findViewById(R.id.Screen);
-        mText = (TextView) findViewById(R.id.text);
-        mText.setText("Scan a tag");
         mWakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE,"");    
         mWakeLock.acquire();
@@ -96,6 +94,4 @@
             fh.writeEnd(DateFormat.getDateTimeInstance().format(new Date()));
             writeAllow = false;
-            mText = (TextView) findViewById(R.id.text);
-            mText.setText("Scan a tag");
             cardID.clear();
         }
@@ -120,5 +116,5 @@
 		    		if(!cardID.contains(uid))
 			    	{
-			    		//Log.i("Foreground dispatch", "Discovered tag with ID: " + uid);
+			    		Log.i("Foreground dispatch", "Discovered tag with ID: " + uid);
 			            //mText.append("\r\n["+time+"] Discovered tag " + ++mCount + " with ID: " + uid);
 			            fh.writeUID(uid, time, "");
@@ -172,5 +168,5 @@
         handler.postDelayed(new Runnable() { 
              public void run() { 
-            	mScreen.setBackgroundColor(android.R.color.black); 
+            	mScreen.setBackgroundColor(android.R.color.white); 
              } 
         }, time); 
@@ -183,3 +179,9 @@
         if (mAdapter != null) mAdapter.disableForegroundDispatch(this);
     }
+    @Override
+    public boolean onCreateOptionsMenu(Menu menu) {
+        MenuInflater inflater = getMenuInflater();
+        inflater.inflate(R.menu.lo_menu, menu);
+        return true;
+    }
 }
