@@ -24,130 +24,25 @@ Check out [CustomWidgets releases](https://github.com/dvinfosys/CustomWidgets/re
2424
2525you could customize following UI controls in your Android application
2626
27- * NormalTextView, HeadingTextView, BlackTextView, ExtraBoldTextView, ItalicTextView, LightTextView, SemiBoldTextView, ThinTextView
28- * NormalEditText
29- * NormalCheckBox
30- * NormalButton
31- * NormalRadioButton
32- * NormalSwitch
33- * NormalToggleButton
34- * CircleImageView
35- * RoundedImageView
36- * CustomSeekBar
37- * VPVideoPlayer
38- * ToastView
39- * Number Counter
40- * CountdownView
27+ * [ TextView, HeadingTextView] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/TextViewFragment.java )
28+ * [ EditText] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/EditTextFragment.java )
29+ * [ CheckBox] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/CheckBoxFragment.java )
30+ * [ Button] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/ButtonFragment.java )
31+ * [ RadioButton] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/RadioButtonFragment.java )
32+ * [ Switch] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/SwitchFragment.java )
33+ * [ ToggleButton] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/ToggleButtonFragment.java )
34+ * [ CircleImageView] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/ImageviewFragment.java )
35+ * [ CustomSeekBar] ( https://github.com/dvinfosys/CustomWidgets/wiki/CustomSeekBar )
36+ * [ VPVideoPlayer] ( https://github.com/dvinfosys/CustomWidgets/wiki/VPVideoPlayer )
37+ * [ ToastView] ( https://github.com/dvinfosys/CustomWidgets/wiki/ToastView )
38+ * [ Number Counter] ( https://github.com/dvinfosys/CustomWidgets/wiki/Number-Counter )
39+ * [ CountdownView] ( https://github.com/dvinfosys/CustomWidgets/wiki/CountdownView )
40+ * [ Spotlight] ( https://github.com/dvinfosys/CustomWidgets/wiki/Spotlight )
41+ * [ Paper ONBOARDING] ( https://github.com/dvinfosys/CustomWidgets/wiki/PAPER-ONBOARDING )
42+ * [ Expanding Collection] ( https://github.com/dvinfosys/CustomWidgets/wiki/Expanding-Collection )
43+ * [ Seekbar] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/SeekbarFragment.java )
44+ * [ ProgressView] ( https://github.com/dvinfosys/CustomWidgets/blob/master/app/src/main/java/com/dvinfosys/WidgetsExample/Fragments/ProgressViewFragment.java )
4145
42- Usage
43- -----
44-
45- TextView
46-
47- TextView (NormalTextView)
48- ``` xml
49- <com .dvinfosys.widgets.TextView.NormalTextView
50- android : layout_width =" wrap_content"
51- android : layout_height =" wrap_content"
52- android : text =" Hello World!" />
53- ```
54-
55- Heading TextView (HeadingTextView)
56- ``` xml
57- <com .dvinfosys.widgets.TextView.HeadingTextView
58- android : layout_width =" wrap_content"
59- android : layout_height =" wrap_content"
60- android : text =" Hello World!" />
61- ```
62-
63- Button (NormalButton)
64- ``` xml
65- <com .dvinfosys.widgets.TextView.NormalButton
66- android : layout_width =" wrap_content"
67- android : layout_height =" wrap_content"
68- android : text =" Hello World!" />
69- ```
70-
71- EditText (NormalEditText)
72- ``` xml
73- <com .dvinfosys.widgets.TextView.NormalEditText
74- android : layout_width =" wrap_content"
75- android : layout_height =" wrap_content"
76- android : text =" Hello World!" />
77- ```
78-
79- RadioButton (NormalRadioButton)
80- ``` xml
81- <com .dvinfosys.widgets.TextView.NormalRadioButton
82- android : layout_width =" wrap_content"
83- android : layout_height =" wrap_content"
84- android : text =" Hello World!" />
85- ```
86-
87- CheckBox (NormalCheckBox)
88- ``` xml
89- <com .dvinfosys.widgets.TextView.NormalCheckBox
90- android : layout_width =" wrap_content"
91- android : layout_height =" wrap_content"
92- android : text =" Hello World!" />
93- ```
94-
95- ToggleButton (NormalToggleButton)
96- ``` xml
97- <com .dvinfosys.widgets.TextView.NormalToggleButton
98- android : layout_width =" wrap_content"
99- android : layout_height =" wrap_content"
100- android : text =" Hello World!" />
101- ```
102-
103- Switch (NormalSwitch)
104- ``` xml
105- <com .dvinfosys.widgets.TextView.NormalSwitch
106- android : layout_width =" wrap_content"
107- android : layout_height =" wrap_content"
108- android : text =" Hello World!" />
109- ```
110-
111- CircleImageView
112- ``` xml
113- <com .dvinfosys.widgets.ImageView.CircleImageView
114- android : id =" @+id/thumbnail"
115- android : layout_width =" 100dp"
116- android : layout_height =" 100dp"
117- android : background =" ?attr/selectableItemBackgroundBorderless"
118- android : clickable =" true"
119- android : scaleType =" centerCrop"
120- android : src =" @mipmap/ic_launcher"
121- app : dv_border_color =" #949494"
122- app : dv_border_width =" 2dp" />
123- ```
124- RoundedImageView
125- ``` xml
126- <com .dvinfosys.widgets.ImageView.RoundedImageView
127- android : layout_width =" wrap_content"
128- android : layout_height =" 200dp"
129- android : layout_margin =" 8dp"
130- android : src =" @drawable/demo_image"
131- app : borderColor =" @color/color_blue"
132- app : borderWidth =" 1dp"
133- app : isSquare =" true"
134- app : radius =" 6dp" />
135- ```
136-
137- NOTE
138- -----
139-
140- Widgets also contains some added fonts with the library,
141- ``` java
142- Poppins . ttf
143- Poppins_Black . ttf
144- Poppins_Bold . ttf
145- Poppins_ExtraBold . ttf
146- Poppins_Italic . ttf
147- Poppins_Light . ttf
148- Poppins_SemiBold . ttf
149- Poppins_Thin . ttf
150- ```
15146
15247## Author
15348
0 commit comments