Categories
- Android (51)
- Challenge of the month (14)
- Dirk Fauth (39)
- Eclipse (314)
- Hendrik Still (1)
- Java (35)
- Jeanderson Candido (3)
- Lars Vogel (109)
- Matthias Mailänder (3)
- OSGi (30)
- Other (37)
- Papercut (15)
- Private (4)
- Servlet (2)
- Simon Scholz (6)
- Softskill Topics (5)
- vogella (34)
- Web (7)
vogella tutorial rss feed
Home
Recommended
Twitter
-
Recent Posts
Monthly Archives: April 2011
Importing existing Java Project into Eclipse – “Create project from existing source”
Are you trying to import a non-Eclipse based Java project into Eclipse? You find a lot of tips in the internet which tell you that you should create a new Java Project and then use the “Create project from existing … Continue reading
Posted in Eclipse
Comments Off on Importing existing Java Project into Eclipse – “Create project from existing source”
One of a kind – getting the unique id which identifies the Android device
Each Android devices allow to read the device settings via the class “Secure”. Especially for C2DM you have a need to uniquely identify the Android device so that you do not register the device several times for Cloud-to-device-messaging. From the … Continue reading
Posted in Android
2 Comments
The penalty is death – StrictMode in Android
Within Android development you should avoid performing long running operations on the UI thread. This includes file and network access. But sometimes it is difficult to remember to make all the right things in your application during development. That is … Continue reading
Posted in Android
Comments Off on The penalty is death – StrictMode in Android