Eclipse Remove Plugin

To to remove goto Help -> About Eclispe SDK -> Installation Details and select the feature you want to remove. More info: You should not remove plug-ins from Eclipse. Plug-ins should be installed as features using the Update Manager. The same Update Manager can be used to disable plug-ins by disabling the feature they belong to. Run Help

Read More

Eclipse Android Java Calendar Start Week On Monday Or Sunday

When using the Calendar class in Android Java the default start of the week is Sunday. To change this use the following function setFirstDayOfWeek Calendar cal; cal.setCalendar(Calendar.getInstance()); cal.setFirstDayOfWeek(Calendar.MONDAY); cal.getInstance() set it to the current date. setFirstDayOfWeek takes an integer. Calendar.MONDAY is just an integer value of 1. Sunday has the value 0, Tuesday = 2, Wednesday

Read More

Eclipse Missing Window In Perspective

When running Eclipse or the Motodev Studio you may find yourself missing some windows when in either Java, DDMS, Debug, Team Synchronizing or the other perspectives. Being it the LogCat, Devices, Package Explorer etc. You might have closed it by accident and can’t remember what it was called and can’t find it in the “Show

Read More

Eclipse +++ LOG: Entry Corrupt Or Truncated

When developing in Eclipse you might run into this error when using logging. In this case Java while developing for Andorid. “+++ LOG: entry corrupt or truncated” First thing to test is if you’re running First thing to test is if you’re using a variable that might contain to much data. Log.e(“#”, myVar); Try using

Read More