Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 872c6bf + 7798569 commit ee4c853Copy full SHA for ee4c853
app/src/main/java/app/dinus/com/example/CircleRotateActivity.java
@@ -24,5 +24,14 @@ public static void startActivity(Context context) {
24
protected void onCreate(Bundle savedInstanceState) {
25
super.onCreate(savedInstanceState);
26
setContentView(R.layout.activity_circle_rotate);
27
+
28
+ LoadingView loadingView = (LoadingView) findViewById(R.id.gear_view);
29
30
+ LoadingRenderer loadingRenderer = new GearLoadingRenderer.Builder(this)
31
+ .setColor(Color.BLUE)
32
+ .setGearCount(3)
33
+ .setGearSwipeDegrees(100)
34
+ .build();
35
+ loadingView.setLoadingRenderer(loadingRenderer);
36
}
37
0 commit comments