How to use
$number = new Eja_Nombor();
$number->eja(1468); //seribu empat ratus enam puluh lapan
or even in comma separated string value
$number->eja('458,139'); //empat ratus lima puluh lapan ribu seratus tiga puluh sembilan
How to use
$number = new Eja_Nombor();
$number->eja(1468); //seribu empat ratus enam puluh lapan
or even in comma separated string value
$number->eja('458,139'); //empat ratus lima puluh lapan ribu seratus tiga puluh sembilan
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:background="@color/White"> | |
<LinearLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" |
private boolean checkMapServices(){ | |
if(isServicesOK()){ | |
if(isMapsEnabled()){ | |
return true; | |
} | |
} | |
return false; | |
} | |
private void buildAlertMessageNoGps() { |
package com.codingwithmitch.googlemaps2018.services; | |
import android.Manifest; | |
import android.app.Notification; | |
import android.app.NotificationChannel; | |
import android.app.NotificationManager; | |
import android.app.Service; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.content.pm.PackageManager; |