@@ -38,14 +38,14 @@ startActivity(SettingIntents.from(this).applicationSetting().build());
3838## List of Intents
3939* ### AlarmIntents
4040 ``` Java
41- showAlarms ()
41+ openAlarms ()
4242 createAlarm(String message, int hour, int minutes, boolean skipUi)
43- createAlarm(String message, int hour, int minutes, boolean vibrate , boolean skipUi )
44- createAlarm(String message, int hour, int minutes, boolean vibrate , boolean isPm , boolean skipUi )
43+ createAlarm(String message, int hour, int minutes, boolean skipUi , boolean vibrate )
44+ createAlarm(String message, int hour, int minutes, boolean skipUi , boolean vibrate , boolean isPm )
4545 ```
4646 Example
4747 ``` Java
48- AlarmIntents . from(this ). showAlarms (). show();
48+ AlarmIntents . from(this ). openAlarms (). show();
4949 ```
5050* ### BrowserIntents
5151 ``` Java
@@ -69,13 +69,19 @@ startActivity(SettingIntents.from(this).applicationSetting().build());
6969* ### CalendarIntents
7070 ``` Java
7171 openCalendar()
72- createEvent(String title, String description)
7372 ```
7473 Example
7574 ``` Java
7675 CalendarIntents . from(this ). openCalendar(). show();
7776 ```
7877* ### CameraIntents
78+ ``` Java
79+
80+ ```
81+ Example
82+ ``` Java
83+
84+ ```
7985* ### ContactIntents
8086 ``` Java
8187 openContacts()
@@ -84,27 +90,192 @@ startActivity(SettingIntents.from(this).applicationSetting().build());
8490 editContact(String name, String newEmail)
8591 insertContact(String name, String phone, String email, String company, String job, String notes)
8692 pickContact()
93+ pickSpecificContactData()
8794 ```
8895 Example
8996 ``` Java
9097 ContactIntents . from(this ). openContacts(). show();
91- ContactIntents . from(this ). viewContact(" Ahmad" ). show();
92- ContactIntents . from(this ). insertContact(" Emiley" , " 0913234235" , " " , " " , " " , " " ). show();
93- ContactIntents . from(this ). editContact(" Ahmad" ). show();
9498 ```
9599* ### EmailIntents
100+ ``` Java
101+ openEmail()
102+ sendEmail(String to, String subject, String message)
103+ sendEmail(String [] to, String subject, String message)
104+ sendEmail(String [] addresses, String [] cc, String [] bcc, String subject, String message)
105+ ```
106+ Example
107+ ``` Java
108+ EmailIntents . from(this ). openEmail(). show();
109+ ```
96110* ### EventIntents
111+ ``` Java
112+ createEvent(String title, String description)
113+ createEvent(String title, String description, String location, long begin, long end, int color, boolean allDay)
114+ ```
115+ Example
116+ ``` Java
117+ EventIntents . from(this ). createEvent(" Birthday" , " Make a birthday cake" ). show();
118+ ```
97119* ### FileIntents
120+ ``` Java
121+
122+ ```
123+ Example
124+ ``` Java
125+
126+ ```
98127* ### GalleryIntents
128+ ``` Java
129+ openGallery()
130+ pickImage()
131+ ```
132+ Example
133+ ``` Java
134+ startActivityForResult(GalleryIntents . from(this ). pickImage(). build(), RequestTag . PICK_IMAGE );
135+ ```
99136* ### GeoIntents
137+ ``` Java
138+
139+ ```
140+ Example
141+ ``` Java
142+
143+ ```
100144* ### MarketIntents
145+ ``` Java
146+
147+ ```
148+ Example
149+ ``` Java
150+
151+ ```
101152* ### MediaIntents
153+ ``` Java
154+
155+ ```
156+ Example
157+ ``` Java
158+
159+ ```
102160* ### MessagingIntents
161+ ``` Java
162+
163+ ```
164+ Example
165+ ``` Java
166+
167+ ```
103168* ### MusicIntents
169+ ``` Java
170+
171+ ```
172+ Example
173+ ``` Java
174+
175+ ```
104176* ### NoteIntents
177+ ``` Java
178+
179+ ```
180+ Example
181+ ``` Java
182+
183+ ```
105184* ### PhoneIntents
185+ ``` Java
186+
187+ ```
188+ Example
189+ ``` Java
190+
191+ ```
106192* ### SearchIntents
193+ ``` Java
194+
195+ ```
196+ Example
197+ ``` Java
198+
199+ ```
107200* ### SettingIntents
201+ ``` Java
202+ setting()
203+ apnSetting()
204+ bluetoothSetting()
205+ dateSetting()
206+ displaySetting()
207+ localeSetting()
208+ securitySetting()
209+ wifiSetting()
210+ wirelessSetting()
211+ accessibilitySetting()
212+ applicationSetting()
213+ captioningSetting()
214+ castSetting()
215+ dreamSetting()
216+ airplaneModeSetting()
217+ inputMethodSetting()
218+ locationSourceSetting()
219+ internalStorageSetting()
220+ memoryCardSetting()
221+ homeSetting()
222+ nfcSetting()
223+ nfcSharingSetting()
224+ nfcPaymentSetting()
225+ printSetting()
226+ privacySetting()
227+ searchSetting()
228+ soundSetting()
229+ syncSetting()
230+ webViewSetting()
231+ vpnSetting()
232+ applicationDetailSetting(String packageName)
233+ applicationDevelopmentSetting()
234+ batterySaverSetting()
235+ dataRoamingSetting()
236+ deviceInfoSetting()
237+ hardKeyboardSetting()
238+ manageApplicationSetting()
239+ manageWriteSetting()
240+ networkOperatorSetting()
241+ notificationListenerSetting()
242+ usageAccessSetting()
243+ userDictionarySetting()
244+ voiceInputSetting()
245+ vrListenerSetting()
246+ wifiIpSetting()
247+ ignoreBatteryOptimizationSetting()
248+ manageAllApplicationSetting()
249+ manageDefaultAppsSetting()
250+ inputMethodSubtypeSetting()
251+ notificationPolicyAccessSetting()
252+ ignoreBackgroundDataRestrictionsSetting(String packageName)
253+ ```
254+ Example
255+ ``` Java
256+ SettingIntents . from(this ). setting(). show();
257+ ```
108258* ### ShareIntents
259+ ``` Java
260+
261+ ```
262+ Example
263+ ``` Java
264+
265+ ```
109266* ### TextIntents
267+ ``` Java
268+
269+ ```
270+ Example
271+ ``` Java
272+
273+ ```
110274* ### TimerIntents
275+ ``` Java
276+ createTimer(String subject, int seconds, boolean skipUi)
277+ ```
278+ Example
279+ ``` Java
280+ TimerIntents . from(this ). createTimer(" Run" , 180 , false ). show();
281+ ```
0 commit comments