如何将数据从活动传递到CustomView?

时间:2019-01-02 09:35:35

标签: android

活动B具有以下自定义视图:

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;
        String[] listOfVouchers = ((MerchantDetailsActivity) getContext()).listOfVouchers;
        Log.d("LIZ OF VOUCHERS", listOfVouchers.toString());
        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);
        } 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);
    }
}

活动A有一个名为listOfVouchers的公共变量。我正在尝试从“自定义视图”访问此变量,如下所示:

Log.d("LIZ OF VOUCHERS", listOfVouchers.toString());

但是它返回以下错误:

com.app.ActivityA cannot be cast to com.app.ActivityB

如何在活动B的自定义视图中从活动A访问变量?在自定义视图中需要它来填充微调器。

3 个答案:

答案 0 :(得分:0)

在活动B中可以找到您的自定义视图,为了将数据保存到本地并传递给它,请查看覆盖它的my answer here

答案 1 :(得分:0)

我认为您的方法不正确。如果需要在定制视图中使用凭证列表,则应在定制视图上提供一个名为“ setVouchers”的公共方法,例如:

public void setVouchers(String[] listOfVouchers){
  mVouchers = listOfVouchers;
}

其中,mVouchers是MakePaymentCustomView类的实例变量。定义方法后,请在需要的活动/片段中调用它,在这种情况下为活动A

答案 2 :(得分:0)

使用共享首选项。 不要将您的价值保存在共享的首选项中。 在自定义视图中获取价值。 使用值后,请从共享首选项中删除值,以避免未知错误。

这不是最佳答案,而只是建议。