Archive for the 'Android' Category

Got ADB Much?

Monday, February 6th, 2012

Working much with ADB? I have been spending WAY TOO much time with it. It is the Android Debugging Bridge.

Some of the most useful features I have come across to get files moving around are these:

adb pull <remote file> <local file>

- and –

adb push <local file> <remote file>

Invaluable. Like FTP, but very fast and convenient. Hope that helps someone!

Set progress bar drawable – Android Developers | Google Groups

Monday, September 26th, 2011

Set progress bar drawable – Android Developers | Google Groups.

Today’s lifesaver. When writing an app in Mono Android, you will need to set your ProgressDrawable = Resources.GetDrawable(Resource.Drawable.drawablename) to get your ProgressDrawable setting to be the drawable xml you have defined. This is how we can setup custom colors for a progress bar.

Using Custom Views in a Layout – Mono for Android

Tuesday, September 6th, 2011

Using Custom Views in a Layout – Mono for Android.

Lifesaver today. Had some trouble building a custom view. But overcame it by getting my namespace references correctly. Woohoo!

Android App Development: Using Themes and Styles in Android | Mobile Orchard

Friday, September 2nd, 2011

Android App Development: Using Themes and Styles in Android | Mobile Orchard.

This was a life-saver today. Thank you!!