-
Recent Posts
Recent Comments
- vidya on Toolbar overlapping listView
- wpadmin on SAX parser using AsyncTask to read xml file on net
- Free Stuff on SAX parser using AsyncTask to read xml file on net
- Crave Freebies on SAX parser using AsyncTask to read xml file on net
- wpadmin on Resources references from the manifest cannot vary by configuration
Archives
- September 2018
- July 2018
- June 2018
- October 2017
- July 2017
- June 2017
- May 2017
- April 2017
- March 2017
- December 2016
- June 2016
- March 2016
- February 2016
- November 2015
- May 2015
- January 2015
- April 2014
- March 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
Categories
Meta
Category Archives: Android
Remove watch face
Found that using Settings on phone to remove a watch face app did not remove the watch face from the Android Wear app or from the wearable. This method worked. Connect phone and wearable to Android Studio as if you … Continue reading
Posted in Android
Leave a comment
Toolbar overlapping listView
I had a layout with an AppBarLayout and toolbar that overlapped the first item on the ListView below it. It appears to have been fixed by adding this line app:layout_behavior=”@string/appbar_scrolling_view_behavior” But the problem was where to add it. The answer … Continue reading
Simple date-time using xml
A simple way to display date-time using xml. <android.widget.TextClock android:id=”@+id/time” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:timeZone=”GMT+0000″ <!–Greenwich –> android:format24Hour=”k:mm” android:format12Hour=”@null” android:textAppearance=”?android:attr/textAppearanceMedium” android:layout_centerVertical=”true” android:layout_centerHorizontal=”true” /> Omit the timeZone to pick up local settings from phone.
Posted in Android
Leave a comment
How to vibrate wearable
Thanks to stackoverflow. Add this to manifest. <uses-permission android:name=”android.permission.VIBRATE”/> Then in code Vibrator vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE); long[] vibrationPattern = {0, 500, 50, 300}; //-1 – don’t repeat final int indexInPatternToRepeat = -1; vibrator.vibrate(vibrationPattern, indexInPatternToRepeat); If you don’t need a … Continue reading
Posted in Android, Wearable
Leave a comment
Colour wheel colour picker
Added a colour wheel-style colour picker in the following way. Documentation here and code here. Copyright 2012 Lars Werkman Created new activity and layout, into Build, Edit libraries and dependencies and added com.larswerkman.holocolorpicker as a library dependency. In the layout … Continue reading
Posted in Android
Leave a comment
Prepare to publish wearable
The steps for me for Wear 1.x (for which wear module must be inside handheld module) were the following. Ensure both handheld and wearable modules had same permissions and package names in their manifest files. Ensure both modules had the … Continue reading
Posted in Android
Leave a comment
Using Eclipse release key in Android Studio
I found that this stackoverflow post had some correct and some slightly misleading comments. The following worked for me. In Android Studio select Build, Generate signed APK and navigate to the release key previously used in Eclipse. Enter your keystore … Continue reading
Posted in Android
Leave a comment
Create assets folder
To create assets folder in Android Studio, right click on module and select New, Folder, Assets folder.
Posted in Android
Leave a comment
How to use Log.isLoggable
Copied in some code that had code such as: if (Log.isLoggable(TAG, Log.DEBUG)) { Log.d(TAG, “onConnected: ” + connectionHint); } and I couldn’t find any logs in logcat. If I remove the if statement then log commands appear. Solution was to … Continue reading
Posted in Android
Leave a comment
Difficult to properly install intelhaxm
To run virtual device for emulation of wearable app need to install Intel x86 emulator Accelerator. I read that the recommended method is to use the SDK. Ran the SDK manager from Android Studio, found the option under SDK Tools … Continue reading
Posted in Android
Leave a comment