Android custom drop down view with dynamic list












0















I have a problem with filling android:entries with String from my ViewModel. Code looks like that:



attrs.xml



<declare-styleable name="AutoCompleteDropDown">
<attr name="android:entries" />
</declare-styleable>


My custom dropdown, AutoCompleteDropDown



public class AutoCompleteDropDown extends AppCompatAutoCompleteTextView {

public AutoCompleteDropDown(Context context, AttributeSet attributes) {
super(context, attributes);
TypedArray a = context.getTheme().obtainStyledAttributes(attributes, R.styleable.AutoCompleteDropDown, 0, 0);
CharSequence entries = a.getTextArray(R.styleable.AutoCompleteDropDown_android_entries);
ArrayAdapter<CharSequence> adapter = new ArrayAdapter<>(context, android.R.layout.simple_dropdown_item_1line, entries);
setAdapter(adapter);
}
...


ViewModel



...
private String genders;

public String getGenders() {
return genders;
}

public void setGenders(String genders) {
this.genders = genders;
}
...


genders are filled in ViewModel constructor:



genders = dataRepository.getGenders();



xml file



<AutoCompleteDropDown
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@={vm.title}"
android:entries="@{vm.genders}"
bind:addTextChangedListener="@{vm.titleValidationChangeListener}"/>


ViewModel is binded correctly, i'm using it many times in that xml file. When i try to run the app i'm getting:




Cannot find the setter for attribute 'android:entries' with parameter
type java.lang.String on AutoCompleteDropDown




It works when i use android:entries="@array/genders" but i need this list to be dynamic. Project is in MVVM pattern. Appreciate any help :)










share|improve this question



























    0















    I have a problem with filling android:entries with String from my ViewModel. Code looks like that:



    attrs.xml



    <declare-styleable name="AutoCompleteDropDown">
    <attr name="android:entries" />
    </declare-styleable>


    My custom dropdown, AutoCompleteDropDown



    public class AutoCompleteDropDown extends AppCompatAutoCompleteTextView {

    public AutoCompleteDropDown(Context context, AttributeSet attributes) {
    super(context, attributes);
    TypedArray a = context.getTheme().obtainStyledAttributes(attributes, R.styleable.AutoCompleteDropDown, 0, 0);
    CharSequence entries = a.getTextArray(R.styleable.AutoCompleteDropDown_android_entries);
    ArrayAdapter<CharSequence> adapter = new ArrayAdapter<>(context, android.R.layout.simple_dropdown_item_1line, entries);
    setAdapter(adapter);
    }
    ...


    ViewModel



    ...
    private String genders;

    public String getGenders() {
    return genders;
    }

    public void setGenders(String genders) {
    this.genders = genders;
    }
    ...


    genders are filled in ViewModel constructor:



    genders = dataRepository.getGenders();



    xml file



    <AutoCompleteDropDown
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@={vm.title}"
    android:entries="@{vm.genders}"
    bind:addTextChangedListener="@{vm.titleValidationChangeListener}"/>


    ViewModel is binded correctly, i'm using it many times in that xml file. When i try to run the app i'm getting:




    Cannot find the setter for attribute 'android:entries' with parameter
    type java.lang.String on AutoCompleteDropDown




    It works when i use android:entries="@array/genders" but i need this list to be dynamic. Project is in MVVM pattern. Appreciate any help :)










    share|improve this question

























      0












      0








      0








      I have a problem with filling android:entries with String from my ViewModel. Code looks like that:



      attrs.xml



      <declare-styleable name="AutoCompleteDropDown">
      <attr name="android:entries" />
      </declare-styleable>


      My custom dropdown, AutoCompleteDropDown



      public class AutoCompleteDropDown extends AppCompatAutoCompleteTextView {

      public AutoCompleteDropDown(Context context, AttributeSet attributes) {
      super(context, attributes);
      TypedArray a = context.getTheme().obtainStyledAttributes(attributes, R.styleable.AutoCompleteDropDown, 0, 0);
      CharSequence entries = a.getTextArray(R.styleable.AutoCompleteDropDown_android_entries);
      ArrayAdapter<CharSequence> adapter = new ArrayAdapter<>(context, android.R.layout.simple_dropdown_item_1line, entries);
      setAdapter(adapter);
      }
      ...


      ViewModel



      ...
      private String genders;

      public String getGenders() {
      return genders;
      }

      public void setGenders(String genders) {
      this.genders = genders;
      }
      ...


      genders are filled in ViewModel constructor:



      genders = dataRepository.getGenders();



      xml file



      <AutoCompleteDropDown
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="@={vm.title}"
      android:entries="@{vm.genders}"
      bind:addTextChangedListener="@{vm.titleValidationChangeListener}"/>


      ViewModel is binded correctly, i'm using it many times in that xml file. When i try to run the app i'm getting:




      Cannot find the setter for attribute 'android:entries' with parameter
      type java.lang.String on AutoCompleteDropDown




      It works when i use android:entries="@array/genders" but i need this list to be dynamic. Project is in MVVM pattern. Appreciate any help :)










      share|improve this question














      I have a problem with filling android:entries with String from my ViewModel. Code looks like that:



      attrs.xml



      <declare-styleable name="AutoCompleteDropDown">
      <attr name="android:entries" />
      </declare-styleable>


      My custom dropdown, AutoCompleteDropDown



      public class AutoCompleteDropDown extends AppCompatAutoCompleteTextView {

      public AutoCompleteDropDown(Context context, AttributeSet attributes) {
      super(context, attributes);
      TypedArray a = context.getTheme().obtainStyledAttributes(attributes, R.styleable.AutoCompleteDropDown, 0, 0);
      CharSequence entries = a.getTextArray(R.styleable.AutoCompleteDropDown_android_entries);
      ArrayAdapter<CharSequence> adapter = new ArrayAdapter<>(context, android.R.layout.simple_dropdown_item_1line, entries);
      setAdapter(adapter);
      }
      ...


      ViewModel



      ...
      private String genders;

      public String getGenders() {
      return genders;
      }

      public void setGenders(String genders) {
      this.genders = genders;
      }
      ...


      genders are filled in ViewModel constructor:



      genders = dataRepository.getGenders();



      xml file



      <AutoCompleteDropDown
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="@={vm.title}"
      android:entries="@{vm.genders}"
      bind:addTextChangedListener="@{vm.titleValidationChangeListener}"/>


      ViewModel is binded correctly, i'm using it many times in that xml file. When i try to run the app i'm getting:




      Cannot find the setter for attribute 'android:entries' with parameter
      type java.lang.String on AutoCompleteDropDown




      It works when i use android:entries="@array/genders" but i need this list to be dynamic. Project is in MVVM pattern. Appreciate any help :)







      java android xml mvvm dropdown






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 '18 at 9:25









      MershelMershel

      192110




      192110
























          2 Answers
          2






          active

          oldest

          votes


















          2














          You can use BindingAdapter for this. Like :



          @BindingAdapter("entries")
          public static void entries(AutoCompleteDropDown view, String array) {
          view.updateData(array);
          }


          updateData it's method which you must create in your AutoCompleteDropDown.
          And in xml it's using same



          app:entries="@{vm.genders}"





          share|improve this answer































            0














            <AutoCompleteDropDown
            xmlns:customNS="http://schemas.android.com/apk/res/com.example.yourpackage"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@={vm.title}"
            customNS:entries="@{vm.genders}"
            />


            You can check this example Android - custom UI with custom attributes






            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53427615%2fandroid-custom-drop-down-view-with-dynamic-list%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              You can use BindingAdapter for this. Like :



              @BindingAdapter("entries")
              public static void entries(AutoCompleteDropDown view, String array) {
              view.updateData(array);
              }


              updateData it's method which you must create in your AutoCompleteDropDown.
              And in xml it's using same



              app:entries="@{vm.genders}"





              share|improve this answer




























                2














                You can use BindingAdapter for this. Like :



                @BindingAdapter("entries")
                public static void entries(AutoCompleteDropDown view, String array) {
                view.updateData(array);
                }


                updateData it's method which you must create in your AutoCompleteDropDown.
                And in xml it's using same



                app:entries="@{vm.genders}"





                share|improve this answer


























                  2












                  2








                  2







                  You can use BindingAdapter for this. Like :



                  @BindingAdapter("entries")
                  public static void entries(AutoCompleteDropDown view, String array) {
                  view.updateData(array);
                  }


                  updateData it's method which you must create in your AutoCompleteDropDown.
                  And in xml it's using same



                  app:entries="@{vm.genders}"





                  share|improve this answer













                  You can use BindingAdapter for this. Like :



                  @BindingAdapter("entries")
                  public static void entries(AutoCompleteDropDown view, String array) {
                  view.updateData(array);
                  }


                  updateData it's method which you must create in your AutoCompleteDropDown.
                  And in xml it's using same



                  app:entries="@{vm.genders}"






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 22 '18 at 9:47









                  Ivan KrasilnikovIvan Krasilnikov

                  613




                  613

























                      0














                      <AutoCompleteDropDown
                      xmlns:customNS="http://schemas.android.com/apk/res/com.example.yourpackage"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content"
                      android:text="@={vm.title}"
                      customNS:entries="@{vm.genders}"
                      />


                      You can check this example Android - custom UI with custom attributes






                      share|improve this answer




























                        0














                        <AutoCompleteDropDown
                        xmlns:customNS="http://schemas.android.com/apk/res/com.example.yourpackage"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@={vm.title}"
                        customNS:entries="@{vm.genders}"
                        />


                        You can check this example Android - custom UI with custom attributes






                        share|improve this answer


























                          0












                          0








                          0







                          <AutoCompleteDropDown
                          xmlns:customNS="http://schemas.android.com/apk/res/com.example.yourpackage"
                          android:layout_width="match_parent"
                          android:layout_height="wrap_content"
                          android:text="@={vm.title}"
                          customNS:entries="@{vm.genders}"
                          />


                          You can check this example Android - custom UI with custom attributes






                          share|improve this answer













                          <AutoCompleteDropDown
                          xmlns:customNS="http://schemas.android.com/apk/res/com.example.yourpackage"
                          android:layout_width="match_parent"
                          android:layout_height="wrap_content"
                          android:text="@={vm.title}"
                          customNS:entries="@{vm.genders}"
                          />


                          You can check this example Android - custom UI with custom attributes







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 22 '18 at 9:51









                          Chetan ShelakeChetan Shelake

                          1809




                          1809






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53427615%2fandroid-custom-drop-down-view-with-dynamic-list%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                              Alcedinidae

                              Can an atomic nucleus contain both particles and antiparticles? [duplicate]