• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. wseng92

    Apps Software for creating image

    I've been code for android/ios using flutter more than a year. Now I would like to learn new things by using software to create image instead of just getting icons from google material design (just like image below). Any recommended ? Thanks.
  2. wseng92

    Follower and Following tab

    In our profile page, we can see follower and following. I saw I have 0 following and 20 followers, but when I click on follower tab, nothing is displayed. Instead, it displays all the followers under following tab.
  3. wseng92

    How many here start to use Flutter ?

    I wonder how many here start to use Flutter ?
  4. wseng92

    Help Why we can select Best answer in the post which were not asked by us?

    As title, why we can select Best answer in the post which were not asked by us?
  5. wseng92

    Apps How to pass mutableList through intent?

    I have a mutableList which declared as below. var newList: MutableList<String> = mutableListOf() How to pass newList through intent? I tried this but not working. mIntent.putParcelableArrayListExtra("mFilePath", ArrayList(newList)) Error Type inference failed. Expected type...
  6. wseng92

    Apps invalidateOptionsMenu() deprecated

    In one of my fragment class, I using invalidateOptionsMenu() as below invalidateOptionsMenu(activity) What can be used to replace invalidateOptionsMenu(Activity activity) ? This method still can be used, but will it be an issue in future?
  7. wseng92

    Will whatsapp web will draining phone battery ?

    Just wonder if we use whatsapp web to access whatsapp , will it drain the phone battery ?
  8. wseng92

    Apps Sign Up layout in android

    I have created a sign up layout as image below. Does this part of code looked bad since the `dp` I used for the floating button are quite large. android:layout_marginTop="110dp" android:layout_marginLeft="70dp" If yes, how can I change it ? <?xml version="1.0" encoding="utf-8"?>...
  9. wseng92

    Birthday Application

    Hi all, I am planning to make an app as a birthday gift to my friend , but I have out of idea. Does anyone have idea ? Thanks. This is the first page.
  10. wseng92

    App idea

    I have a little knowledge on Android(learn by myself) and trying to build an app. Anyone has suggestions ?
  11. wseng92

    Apps What does requestCode and resultCode in onActivityResult refer to?

    Good day guys. I'm new to android and now using **startActivityForResult** in my program. In my app, I have two button and two textView. The two `button` used to open the dialog. How can I check which button was pressed onActivityResult so that the TextView can be setText accordingly to the...
  12. wseng92

    Apps Add button dynamically

    How do I add a button dynamically? I have a button in Claims.java named button1 and it used to open the radio button dialog. It looked like this What I trying to achieve is: I want a button added dynamically and clickable once `button1` gets text from another activity. The following image...