I'm trying to create this dialog:
.
When Spinner is set to custom value, TextEdit should automatically appear. I'm calling View.setVisible()
on the TextView
but the visibility is not evaluated immediately but waits to another change - e.g. adding another row or setting a date.
The code:
...
customText = (EditText) v.findViewById(R.id.edit_custom_text);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
s.setAdapter(adapter);
s.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> adapterView, View view, int i, long l) {
SpinnerItem si = (SpinnerItem) adapterView.getItemAtPosition(i);
evt.type = si.eventType;
if (evt.type == EventType.CUSTOM) {
customText.setVisibility(View.VISIBLE);
} else {
customText.setVisibility(View.GONE);
}
}
@Override
public void onNothingSelected(AdapterView<?> adapterView) {
//do nothing
}
});
I tried View.invalidate()
(on parent view) and View.refreshDrawableState()
with no luck :/
Edit: The code above is reached (verified by debugger) and I also tried View.INVISIBLE
. The view is just not refreshed immediately but only after another change in view.
That should work, could it be that your layout somehow doesn't allow/recognises this change perhaps?
Try changing it to
INVISIBLE
instead ofGONE
, including (important!) in your layout xml file.If that works for some reason, try something like this: