Android custom drop down view with dynamic list
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
add a comment |
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
add a comment |
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
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
java android xml mvvm dropdown
asked Nov 22 '18 at 9:25
MershelMershel
192110
192110
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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}"
add a comment |
<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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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}"
add a comment |
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}"
add a comment |
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}"
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}"
answered Nov 22 '18 at 9:47
Ivan KrasilnikovIvan Krasilnikov
613
613
add a comment |
add a comment |
<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
add a comment |
<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
add a comment |
<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
<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
answered Nov 22 '18 at 9:51
Chetan ShelakeChetan Shelake
1809
1809
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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