Back to project page FootyNews.
The source code is released under:
MIT License
If you think the Android project FootyNews listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.arasthel.googlenavdrawermenu.utils; //from w ww. j a va 2 s . co m /** * Created by Arasthel on 15/04/14. */ public class Utils { public static String[] convertToStringArray(CharSequence[] charSequences) { if(charSequences == null) { return null; } if (charSequences instanceof String[]) { return (String[]) charSequences; } String[] strings = new String[charSequences.length]; for (int index = 0; index < charSequences.length; index++) { strings[index] = charSequences[index].toString(); } return strings; } }