You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 2, 2024. It is now read-only.
[Note] : Use ```EasyRadioGroup``` insted of default ```RadioGroup``` for this.
67
68
69
+
**Special Radiobuttons**
70
+
```
71
+
<RadioButton
72
+
style="@style/ClassicQuiz"
73
+
android:layout_width="match_parent"
74
+
android:layout_height="wrap_content"
75
+
android:text="Correct option" />
76
+
```
77
+
All you have to do is just apply the styles. These are the following styles
78
+
- ClassicQuiz
79
+
- ModernQuiz
80
+
- ClassicBlue
81
+
- ClassicRed
82
+
- ModernRed
83
+
- ModernBlue
84
+
68
85
**Spinner**
69
86
```java
70
87
Spinner spinner = findViewById(R.id.spinner); // Use default spinner,Just need to use this adapter.
@@ -76,18 +93,18 @@ dependencies {
76
93
**Listview**
77
94
```java
78
95
Listview listview = findViewById(R.id.listview); // Use default spinner,Just need to use this adapter.
79
-
ListAdapter adapter =newListAdapter(this,newString[]{"High","Ultra","Extreme"},newString[]{"This will give you 30 FPS","This will give you 40 FPS","This will give you 60 FPS"});
96
+
EasyListAdapter adapter =newEasyListAdapter(this,newString[]{"High","Ultra","Extreme"},newString[]{"This will give you 30 FPS","This will give you 40 FPS","This will give you 60 FPS"});
0 commit comments