Вопрос

int mColor = 0xff00ff00;

remoteView.setInt(R.id.framelayout1, "setBackgroundResource", android.R.color.white);

how do i set the color using mColor ?

Это было полезно?

Решение

You should try

remoteView.setInt(R.id.framelayout1, "setBackgroundColor", mColor);
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top