We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LoopView is not refreshing itself:
P.S: I tried invalidate() , postinvalidate() , recreate() . Nothing works.
Below is my code:
public void refreshcategoryloop(){ categoryLoop = (LoopView)findViewById(R.id.categoryLoop); categoryView.setVisibility(View.VISIBLE); categoryLoop.setInitPosition(0); categoryLoop.setCanLoop(false); categoryLoop.setLoopListener(new LoopScrollListener() { @Override public void onItemSelect(int item) { } }); categoryLoop.setTextSize(15); categories = new ArrayList<String>(); for (int l = 0; l < servicesArr.length(); l++) { try { categories.add(servicesArr.getJSONObject(l).getString("Performance").toString()); } catch (JSONException e) { e.printStackTrace(); } } categoryLoop.setDataList(categories); }
And find attached the screenshots.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
LoopView is not refreshing itself:
P.S: I tried invalidate() , postinvalidate() , recreate() . Nothing works.
Below is my code:
And find attached the screenshots.
The text was updated successfully, but these errors were encountered: