private void setBackgroundAttributes()

in rides-android/src/main/java/com/uber/sdk/android/rides/RideRequestButton.java [218:236]


    private void setBackgroundAttributes(
            @NonNull Context context,
            @Nullable AttributeSet attrs,
            int defStyleAttr,
            int defStyleRes) {
        int attrsResources[] = {
                android.R.attr.background,
        };
        TypedArray backgroundAttributes = context.getTheme().obtainStyledAttributes(
                attrs,
                attrsResources,
                defStyleAttr,
                defStyleRes);
        try {
            applyBackgroundResource(backgroundAttributes);
        } finally {
            backgroundAttributes.recycle();
        }
    }