Recent content by slash me

  1. S

    What's the easiest way to make an app for dummies?

    All you need is, moderate English skill to understand what others giving specific solution. Along that everything is logic. Plan a project , ask yourself questions then search in Google. Can take 1 year to arrive but not a venture !
  2. S

    how i use the StringTokenizer class in android?

    I have used this before for autocompletetextView in my notepad application. Example below of space tokenizer : public class SpaceTokenizer implements Tokenizer { public int findTokenStart(CharSequence text, int cursor) { int i = cursor; while (i > 0 && text.charAt(i - 1) != ' ') { i--; }...
  3. S

    android basic project file structure

    java This is where you are going to program the application. Ultimately you may have seen there are several folders inside it, which is automatically generated according to your choice. While you choose your package name at new project wizard of Android studio. Example ...