How to make app:entries attribute dynamic?

438 Views Asked by At

attr.xml

<declare-styleable name="PaymentCustomView">
    <attr name="customViewTitle" format="string" />
    <attr name="customViewSubtitle" format="string" />
    <attr name="android:entries" />
</declare-styleable>

make_payment.xml

    <com.laterpay.MakePaymentCustomView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/blue_column"
        app:customViewSubtitle="100"
        app:customViewTitle="Maximum Spending"
        app:entries="@{vm.vouchers}"/>

CustomView.java

public class MakePaymentCustomView extends LinearLayout {
    private Context _context;
    public MakePaymentCustomView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        _context = context;
        setOrientation(LinearLayout.VERTICAL);
        LayoutInflater.from(context).inflate(R.layout.make_payment_custom_layout, this, true);
        String title;
        String subtitle;
        TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.PaymentCustomView, 0, 0);
        try {
            title = a.getString(R.styleable.PaymentCustomView_customViewTitle);
            subtitle = a.getString(R.styleable.PaymentCustomView_customViewSubtitle);
            CharSequence[] entries = a.getTextArray(R.styleable.PaymentCustomView_android_entries);
            if(entries != null){
                //do something
                Log.d("Entries:",entries.toString());
            }
        } finally {
            a.recycle();
        }
        // Throw an exception if required attributes are not set
        if (title == null) {
            throw new RuntimeException("No title provided");
        }
        if (subtitle == null) {
            throw new RuntimeException("No subtitle provided");
        }

        init(title, subtitle);
    }
    // Setup views
    private void init(String title, String subtitle) {
        List<String> categories = new ArrayList<String>();
        categories.add("Automobile");
        categories.add("Business Services");
        categories.add("Computers");
        categories.add("Education");
        categories.add("Personal");
        categories.add("Travel");
        TextView titleView = findViewById(R.id.customview_textview_title);
        TextView subtitleView = findViewById(R.id.customview_textview_subtitle);
        Spinner voucherList = findViewById(R.id.voucherSpinner);
        ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(_context, android.R.layout.simple_spinner_item, categories);
        voucherList.setAdapter(dataAdapter);
        titleView.setText(title);
        subtitleView.setText(subtitle);
    }

I would like to populate my Spinner with a set of dynamic data which I get from an API. But the issue is, how can I pass this data into a custom view and populate the spinner (voucherList)?

Activity A will pass some of the data to Activity B which contains this custom view. How can I populate the data into the custom view's spinner?

2

There are 2 best solutions below

1
On

Check this
You will call the REST-API first and then pass that collection/dynamic data which you mention to other activity shown in the link.

0
On

Your customedView should have an custom adapter or a private variable with the setter method.Then you can stuff your customedView to a popupWindow which Activity B will show.