Commit 027c5d47 by sikang

UPDATE

parent 72748b4f
...@@ -10,7 +10,8 @@ android { ...@@ -10,7 +10,8 @@ android {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
ndk { ndk {
abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a' //百度活体 在armeabi平台下性能很差,建议使用armeabi-v7a
abiFilters 'armeabi-v7a'//,'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
} }
} }
buildTypes { buildTypes {
...@@ -37,6 +38,10 @@ android { ...@@ -37,6 +38,10 @@ android {
} }
} }
repositories {
mavenCentral()
}
dependencies { dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12' testImplementation 'junit:junit:4.12'
...@@ -101,8 +106,6 @@ dependencies { ...@@ -101,8 +106,6 @@ dependencies {
api 'com.google.firebase:firebase-messaging:17.3.2' api 'com.google.firebase:firebase-messaging:17.3.2'
//firebase remoteConfig //firebase remoteConfig
api 'com.google.firebase:firebase-config:16.0.0' api 'com.google.firebase:firebase-config:16.0.0'
//firebase dynamicLinks
// api 'com.google.firebase:firebase-dynamic-links:16.1.2'
//camerakit //camerakit
api 'com.wonderkiln:camerakit:0.13.1' api 'com.wonderkiln:camerakit:0.13.1'
...@@ -112,6 +115,10 @@ dependencies { ...@@ -112,6 +115,10 @@ dependencies {
api 'com.google.android.gms:play-services-auth:15.0.1' api 'com.google.android.gms:play-services-auth:15.0.1'
api 'com.google.android.gms:play-services-auth-api-phone:15.0.1' api 'com.google.android.gms:play-services-auth-api-phone:15.0.1'
//AppsFlyer
// api 'com.appsflyer:af-android-sdk:4+@aar'
// api 'com.android.installreferrer:installreferrer:1.0'
//zendesk //zendesk
api group: 'com.zendesk', name: 'support', version: '2.1.1' api group: 'com.zendesk', name: 'support', version: '2.1.1'
......
...@@ -77,7 +77,9 @@ ...@@ -77,7 +77,9 @@
####混淆保护自己项目的部分代码以及引用的第三方jar包library-end#### ####混淆保护自己项目的部分代码以及引用的第三方jar包library-end####
#AppsFlyer
-dontwarn com.android.installreferrer
-keep class com.appsflyer.** { *; }
#保持 native 方法不被混淆 #保持 native 方法不被混淆
-keepclasseswithmembernames class * { -keepclasseswithmembernames class * {
......
...@@ -133,6 +133,27 @@ ...@@ -133,6 +133,27 @@
android:name=".mvp.ui.activity.RefreshDeskListActivity" android:name=".mvp.ui.activity.RefreshDeskListActivity"
android:screenOrientation="portrait" /> android:screenOrientation="portrait" />
<!--拍照-->
<activity
android:name=".mvp.ui.activity.TakePhotoActivity"
android:screenOrientation="portrait" />
<receiver
android:name="com.appsflyer.MultipleInstallBroadcastReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
<receiver
android:name=".broadcast.InstallReferrerReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
<!-- 具备短信默认应用条件 1 --> <!-- 具备短信默认应用条件 1 -->
<activity android:name="tech.starwin.service.sms.SmsActivity"> <activity android:name="tech.starwin.service.sms.SmsActivity">
......
...@@ -17,6 +17,7 @@ import com.scwang.smartrefresh.layout.footer.ClassicsFooter; ...@@ -17,6 +17,7 @@ import com.scwang.smartrefresh.layout.footer.ClassicsFooter;
import com.scwang.smartrefresh.layout.header.ClassicsHeader; import com.scwang.smartrefresh.layout.header.ClassicsHeader;
import com.tencent.bugly.crashreport.CrashReport; import com.tencent.bugly.crashreport.CrashReport;
import cn.fraudmetrix.octopus.aspirit.main.OctopusManager; import cn.fraudmetrix.octopus.aspirit.main.OctopusManager;
import tech.starwin.network.Gateway; import tech.starwin.network.Gateway;
import tech.starwin.utils.FireBaseHelper; import tech.starwin.utils.FireBaseHelper;
...@@ -33,11 +34,11 @@ import static com.facebook.accountkit.internal.AccountKitController.getApplicati ...@@ -33,11 +34,11 @@ import static com.facebook.accountkit.internal.AccountKitController.getApplicati
* 配置 BaseLibrary * 配置 BaseLibrary
*/ */
public class LibConfig { public class LibConfig {
private static boolean useDefaulLoginMode = true;//请求出现登录时是否使用默认的响应方式(跳转登录界面)
/** /**
* BuildConfig 数据 * BuildConfig 数据
*/ */
private static Context CONTEXT; private static Application CONTEXT;
public static boolean DEBUG; public static boolean DEBUG;
public static String APPLICATION_ID; public static String APPLICATION_ID;
public static String BUILD_TYPE; public static String BUILD_TYPE;
...@@ -64,6 +65,7 @@ public class LibConfig { ...@@ -64,6 +65,7 @@ public class LibConfig {
public static String ZENDESK_OAUTH_CLIENT_ID; public static String ZENDESK_OAUTH_CLIENT_ID;
public static String TONGDUN_PARENT_CODE; public static String TONGDUN_PARENT_CODE;
public static String TONGDUN_PARENT_KEY; public static String TONGDUN_PARENT_KEY;
public static String AF_DEV_KEY;
public static String LANGUAGE = "en"; public static String LANGUAGE = "en";
public static int HARVESTER_PORT;// public static int HARVESTER_PORT;//
public static int LOADING_ICON;//loading图标 public static int LOADING_ICON;//loading图标
...@@ -91,12 +93,7 @@ public class LibConfig { ...@@ -91,12 +93,7 @@ public class LibConfig {
//init FireBase RemoteConfig //init FireBase RemoteConfig
//RemoteConfig //RemoteConfig
FirebaseRemoteConfig.getInstance().setConfigSettings( initFirebaseRemoteConfig();
new FirebaseRemoteConfigSettings.Builder()
.setDeveloperModeEnabled(LibConfig.DEBUG)
.build()
);
FireBaseHelper.fetchRemoteConfig();
//init SharePreferences //init SharePreferences
PreferencesManager.get().init(application); PreferencesManager.get().init(application);
...@@ -109,23 +106,81 @@ public class LibConfig { ...@@ -109,23 +106,81 @@ public class LibConfig {
CrashReport.initCrashReport(getApplicationContext(), BUGLY_APP_ID, DEBUG); CrashReport.initCrashReport(getApplicationContext(), BUGLY_APP_ID, DEBUG);
} }
//init zendesk initZendesk(application);
Zendesk.INSTANCE.init(application, ZENDESK_URL, ZENDESK_APP_ID, ZENDESK_OAUTH_CLIENT_ID);
Support.INSTANCE.init(Zendesk.INSTANCE);
Zendesk.INSTANCE.setIdentity(new AnonymousIdentity());//匿名身份
//同盾 initTD();
OctopusManager.getInstance().init(CONTEXT, TONGDUN_PARENT_CODE, TONGDUN_PARENT_KEY);
OctopusManager.getInstance().setPrimaryColorResId(MAIN_COLOR);
OctopusManager.getInstance().setTitleColorResId(R.color.white);
OctopusManager.getInstance().setShowWarnDialog(true);
OctopusManager.getInstance().setStatusBarBg(MAIN_COLOR);
// initAppsFLyer(application);
} }
}
/**
* init FirebaseRemoteConfig
*/
private static void initFirebaseRemoteConfig() {
FirebaseRemoteConfig.getInstance().setConfigSettings(
new FirebaseRemoteConfigSettings.Builder()
.setDeveloperModeEnabled(LibConfig.DEBUG)
.build()
);
FireBaseHelper.fetchRemoteConfig();
}
/**
* init zendesk
*/
private static void initZendesk(Application application) {
Zendesk.INSTANCE.init(application, ZENDESK_URL, ZENDESK_APP_ID, ZENDESK_OAUTH_CLIENT_ID);
Support.INSTANCE.init(Zendesk.INSTANCE);
Zendesk.INSTANCE.setIdentity(new AnonymousIdentity());//匿名身份
}
/**
* init 同盾
*/
private static void initTD() {
OctopusManager.getInstance().init(CONTEXT, TONGDUN_PARENT_CODE, TONGDUN_PARENT_KEY);
OctopusManager.getInstance().setPrimaryColorResId(MAIN_COLOR);
OctopusManager.getInstance().setTitleColorResId(R.color.white);
OctopusManager.getInstance().setShowWarnDialog(true);
OctopusManager.getInstance().setStatusBarBg(MAIN_COLOR);
} }
/** /**
* init AppsFLyer
*/
// private static void initAppsFLyer(Application application) {
// AppsFlyerConversionListener conversionDataListener =
// new AppsFlyerConversionListener() {
// @Override
// public void onInstallConversionDataLoaded(Map<String, String> map) {
//
// }
//
// @Override
// public void onInstallConversionFailure(String s) {
//
// }
//
// @Override
// public void onAppOpenAttribution(Map<String, String> map) {
//
// }
//
// @Override
// public void onAttributionFailure(String s) {
//
// }
// };
// AppsFlyerLib.getInstance().init(AF_DEV_KEY, conversionDataListener, getApplicationContext());
// AppsFlyerLib.getInstance().startTracking(application);
// }
/**
* 用于在Base 中 实现Butterknife.bind()的功能 * 用于在Base 中 实现Butterknife.bind()的功能
* *
* @param binder 实现 ButterKnifeBinder.bindView() 方法,在其中做Butterknife.bind() ,功能 * @param binder 实现 ButterKnifeBinder.bindView() 方法,在其中做Butterknife.bind() ,功能
...@@ -175,4 +230,15 @@ public class LibConfig { ...@@ -175,4 +230,15 @@ public class LibConfig {
}); });
} }
/**
* 清除默认的登录失效响应
*/
public static void clearDefaultLoginMode() {
useDefaulLoginMode = false;
}
public static boolean isDefaultLoginMode() {
return useDefaulLoginMode;
}
} }
...@@ -18,6 +18,7 @@ import android.view.ViewGroup; ...@@ -18,6 +18,7 @@ import android.view.ViewGroup;
import android.widget.FrameLayout; import android.widget.FrameLayout;
import com.google.firebase.messaging.RemoteMessage; import com.google.firebase.messaging.RemoteMessage;
import com.qmuiteam.qmui.util.QMUIStatusBarHelper;
import com.qmuiteam.qmui.widget.QMUITopBar; import com.qmuiteam.qmui.widget.QMUITopBar;
import com.trello.rxlifecycle2.LifecycleTransformer; import com.trello.rxlifecycle2.LifecycleTransformer;
import com.trello.rxlifecycle2.RxLifecycle; import com.trello.rxlifecycle2.RxLifecycle;
...@@ -34,6 +35,7 @@ import tech.starwin.utils.context_utils.AppLanguageUtils; ...@@ -34,6 +35,7 @@ import tech.starwin.utils.context_utils.AppLanguageUtils;
import tech.starwin.utils.PresenterHoler; import tech.starwin.utils.PresenterHoler;
import tech.starwin.utils.context_utils.FragmentLauncher; import tech.starwin.utils.context_utils.FragmentLauncher;
import tech.starwin.utils.ui_utils.DialogFactory; import tech.starwin.utils.ui_utils.DialogFactory;
import tech.starwin.utils.ui_utils.QMUIHelper;
import tech.starwin.widget.ProgressDialog; import tech.starwin.widget.ProgressDialog;
/** /**
...@@ -187,9 +189,13 @@ public abstract class BaseActivity extends AppCompatActivity implements IView { ...@@ -187,9 +189,13 @@ public abstract class BaseActivity extends AppCompatActivity implements IView {
private void initRootLayout() { private void initRootLayout() {
setContentView(R.layout.base_activity_root); setContentView(R.layout.base_activity_root);
rootLayout = findViewById(R.id.root_layout); rootLayout = findViewById(R.id.root_layout);
//是否使用沉浸式状态栏
if (useTransparentStatusBar()) {
QMUIStatusBarHelper.translucent(this);
}
//判断是否要显示TopBar //判断是否要显示TopBar
if (useTopBar()) { if (useTopBar()) {
mTopBar = LayoutInflater.from(this).inflate(R.layout.base_topbar, rootLayout, true).findViewById(R.id.layout_topbar); mTopBar = QMUIHelper.insertTopBar(rootLayout, useTransparentStatusBar());
if (mTopBar != null) if (mTopBar != null)
initTopBar(mTopBar); initTopBar(mTopBar);
} }
...@@ -206,12 +212,9 @@ public abstract class BaseActivity extends AppCompatActivity implements IView { ...@@ -206,12 +212,9 @@ public abstract class BaseActivity extends AppCompatActivity implements IView {
} else { } else {
LayoutInflater.from(this).inflate(bindLayout(), rootLayout, true); LayoutInflater.from(this).inflate(bindLayout(), rootLayout, true);
} }
unBinder = LibConfig.bindView(this, rootLayout);
initView();
} else {
throw new RuntimeException("找不到布局文件 bindLayout() -> " + bindLayout());
} }
unBinder = LibConfig.bindView(this, rootLayout);
initView();
} }
/** /**
...@@ -233,18 +236,26 @@ public abstract class BaseActivity extends AppCompatActivity implements IView { ...@@ -233,18 +236,26 @@ public abstract class BaseActivity extends AppCompatActivity implements IView {
} }
/** /**
* 是否使用沉浸式状态栏,默认使用
*/
public boolean useTransparentStatusBar() {
return true;
}
/**
* 是否使用侧滑 * 是否使用侧滑
*/ */
public int bindDrawerLayout() { public int bindDrawerLayout() {
return 0; return 0;
} }
/** /**
* 初始化TopBar,需要自定义TopBar样式时重写 * 初始化TopBar,需要自定义TopBar样式时重写
* 默认TopBar只包含一个BackButton 和 Titile * 默认TopBar只包含一个BackButton 和 Titile
*/ */
protected void initTopBar(QMUITopBar topBar) { protected void initTopBar(QMUITopBar topBar) {
mTopBar.addLeftBackImageButton().setOnClickListener(new View.OnClickListener() { topBar.addLeftBackImageButton().setOnClickListener(new View.OnClickListener() {
@Override @Override
public void onClick(View v) { public void onClick(View v) {
finish(); finish();
......
...@@ -33,7 +33,12 @@ public abstract class BaseApplication extends MultiDexApplication { ...@@ -33,7 +33,12 @@ public abstract class BaseApplication extends MultiDexApplication {
LibConfig.initLib(this); LibConfig.initLib(this);
} }
/**
* before onCreate()
* */
public abstract void initLibCnofig(); public abstract void initLibCnofig();
public abstract void afterOnCreate();
} }
...@@ -11,6 +11,7 @@ import android.view.LayoutInflater; ...@@ -11,6 +11,7 @@ import android.view.LayoutInflater;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import com.qmuiteam.qmui.util.QMUIStatusBarHelper;
import com.qmuiteam.qmui.widget.QMUITopBar; import com.qmuiteam.qmui.widget.QMUITopBar;
import com.trello.rxlifecycle2.LifecycleTransformer; import com.trello.rxlifecycle2.LifecycleTransformer;
import com.trello.rxlifecycle2.RxLifecycle; import com.trello.rxlifecycle2.RxLifecycle;
...@@ -24,6 +25,7 @@ import tech.starwin.R; ...@@ -24,6 +25,7 @@ import tech.starwin.R;
import tech.starwin.mvp.IView; import tech.starwin.mvp.IView;
import tech.starwin.utils.PresenterHoler; import tech.starwin.utils.PresenterHoler;
import tech.starwin.utils.ui_utils.DialogFactory; import tech.starwin.utils.ui_utils.DialogFactory;
import tech.starwin.utils.ui_utils.QMUIHelper;
import tech.starwin.widget.ProgressDialog; import tech.starwin.widget.ProgressDialog;
import tech.starwin.utils.ui_utils.UIHelper; import tech.starwin.utils.ui_utils.UIHelper;
...@@ -76,8 +78,13 @@ public abstract class BaseFragment extends Fragment implements IView { ...@@ -76,8 +78,13 @@ public abstract class BaseFragment extends Fragment implements IView {
unBinder = LibConfig.bindView(this, mContentView); unBinder = LibConfig.bindView(this, mContentView);
} else { } else {
mContentView = (ViewGroup) LayoutInflater.from(getActivity()).inflate(R.layout.base_activity_root, null); mContentView = (ViewGroup) LayoutInflater.from(getActivity()).inflate(R.layout.base_activity_root, null);
//是否使用沉浸式状态栏
if (useTransparentStatusBar()) {
QMUIStatusBarHelper.translucent(getActivity());
}
//判断是否要显示TopBar
if (useTopBar()) { if (useTopBar()) {
mTopBar = LayoutInflater.from(getActivity()).inflate(R.layout.base_topbar, mContentView, true).findViewById(R.id.layout_topbar); mTopBar = QMUIHelper.insertTopBar(mContentView, useTransparentStatusBar());
if (mTopBar != null) if (mTopBar != null)
initTopBar(mTopBar); initTopBar(mTopBar);
} }
...@@ -109,6 +116,13 @@ public abstract class BaseFragment extends Fragment implements IView { ...@@ -109,6 +116,13 @@ public abstract class BaseFragment extends Fragment implements IView {
} }
/** /**
* 是否使用沉浸式状态栏,默认不使用
*/
public boolean useTransparentStatusBar() {
return false;
}
/**
* 初始化TopBar,需要自定义TopBar样式时重写 * 初始化TopBar,需要自定义TopBar样式时重写
* 默认TopBar只包含一个BackButton 和 Titile * 默认TopBar只包含一个BackButton 和 Titile
*/ */
......
package tech.starwin.broadcast;
/**
* Created by SiKang on 2018/11/16.
*/
public enum ActionEnum {
LOGIN_INVALID("action.login.invalid");
private String action;
ActionEnum(String action) {
this.action = action;
}
public String value() {
return action;
}
}
...@@ -85,13 +85,16 @@ public abstract class HttpObserver<T> implements Observer<T> { ...@@ -85,13 +85,16 @@ public abstract class HttpObserver<T> implements Observer<T> {
LoginManager.get().tokenInvalid(); LoginManager.get().tokenInvalid();
return true; return true;
case 403: case 403:
// TODO 短信发送失败 // 短信发送失败
onError(Error.SERVER_ERROR, LibConfig.getContext().getString(R.string.show_not_login_yet));
return true; return true;
case 409: case 409:
// TODO 版本更新 // 版本更新
onError(Error.SERVER_ERROR, "need update");
return true; return true;
case 412: case 412:
// TODO 参数缺失 // 参数缺失
onError(Error.SERVER_ERROR, "params missing");
return true; return true;
case 404: case 404:
case 500: case 500:
......
...@@ -358,9 +358,9 @@ public class UserPresenter extends BasePresenter<UserApi> { ...@@ -358,9 +358,9 @@ public class UserPresenter extends BasePresenter<UserApi> {
} }
/** /**
* 获取客户自定义配置 * 客户服务热线、公司介绍
*/ */
public void getCustomerConfig(String action) { public void getCustomerMsg(String action) {
handleRequest(action, apiService.display()); handleRequest(action, apiService.display());
} }
......
package tech.starwin.mvp.ui.activity;
import android.content.Context;
import com.qmuiteam.qmui.widget.QMUITopBar;
import tech.starwin.R;
import tech.starwin.base.BaseActivity;
import tech.starwin.utils.context_utils.ActivityJumper;
/**
* Created by SiKang on 2018/11/17.
*/
public class RepaymentGuideActivity extends BaseActivity {
public static void start(Context context) {
new ActivityJumper.Builder(context, RepaymentGuideActivity.class).build().start();
}
@Override
protected void initTopBar(QMUITopBar topBar) {
super.initTopBar(topBar);
topBar.setTitle(R.string.text_title_repaymentraiders);
}
@Override
public int bindLayout() {
return R.layout.activity_repayment_guide;
}
@Override
public void initView() {
}
@Override
public void onHttpSuccess(String action, Object result) {
}
}
package tech.starwin.mvp.ui.activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.support.annotation.DrawableRes;
import android.support.v4.app.FragmentActivity;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
import com.wonderkiln.camerakit.CameraKitError;
import com.wonderkiln.camerakit.CameraKitEvent;
import com.wonderkiln.camerakit.CameraKitEventListener;
import com.wonderkiln.camerakit.CameraKitImage;
import com.wonderkiln.camerakit.CameraKitVideo;
import com.wonderkiln.camerakit.CameraView;
import java.io.File;
import tech.starwin.R;
import tech.starwin.base.BaseActivity;
import tech.starwin.impl.OnEventClickListener;
import tech.starwin.utils.BitmapUtils;
import tech.starwin.utils.FileUtils;
import tech.starwin.utils.context_utils.ActivityJumper;
import tech.starwin.utils.context_utils.EasyActivityResult;
import tech.starwin.utils.ui_utils.UIHelper;
/**
* Created by SiKang on 2018/9/25.
*/
public class TakePhotoActivity extends BaseActivity {
public enum PhotoType {
KTP,
WORK_CARD
}
public static void startForResult(FragmentActivity activity, int requestCode, PhotoType type, @DrawableRes int previewMask, @DrawableRes int shootBtnImg, EasyActivityResult.OnResultListener result) {
Intent intent = new ActivityJumper.Builder(activity, TakePhotoActivity.class)
.put("photo_type", type.name())
.put("preview_mask", previewMask)
.put("shoot_btn_img", shootBtnImg)
.toIntent();
new EasyActivityResult(activity).startForResult(intent, requestCode, result);
}
ImageView btnCapture;
ImageView maskImv;
Button mbtnCancel;
CameraView cameraView;
public static String KTP_IMAGE = "ktp_img.jpg";
private static final int PHOTO_FILE_SIZE_MAX = 2 * 1024 * 1024;
final int BITMAP_MAX_SQUARE_SIZE = 3920;
@Override
public int bindLayout() {
return R.layout.activity_take_photo;
}
@Override
public void initView() {
btnCapture = findViewById(R.id.button_shoot);
mbtnCancel = findViewById(R.id.button_cancel);
cameraView = findViewById(R.id.cameraView);
maskImv = findViewById(R.id.activity_takephoto_mask_imv);
int mask = getIntent().getIntExtra("preview_mask", 0);
int btnImg = getIntent().getIntExtra("shoot_btn_img", 0);
if (mask != 0) {
maskImv.setImageResource(mask);
}
if (btnImg != 0) {
btnCapture.setImageResource(btnImg);
}
String type = getIntent().getStringExtra("photo_type");
if (TextUtils.equals(type, PhotoType.KTP.name())) {
findViewById(R.id.imageview_id_frame).setVisibility(View.VISIBLE);
}
UIHelper.bindClickListener(new OnEventClickListener() {
@Override
public void onEventClick(View v) {
if (v.getId() == R.id.button_shoot) {
cameraView.captureImage();
} else if (v.getId() == R.id.button_cancel) {
setResult(RESULT_CANCELED);
finish();
}
}
}, mbtnCancel, btnCapture);
//拍照监听
cameraView.addCameraKitListener(new CameraKitEventListener() {
@Override
public void onEvent(CameraKitEvent cameraKitEvent) {
}
@Override
public void onError(CameraKitError cameraKitError) {
}
@Override
public void onImage(CameraKitImage cameraKitImage) {
Bitmap bitmap = BitmapUtils.getBitmapWithMaxLimit(cameraKitImage.getJpeg(), BITMAP_MAX_SQUARE_SIZE, PHOTO_FILE_SIZE_MAX);
File image = FileUtils.getImageFile(getApplicationContext(), KTP_IMAGE);
if (!image.exists()) {
image.mkdir();
}
BitmapUtils.saveBitmapToSDCard(BitmapUtils.getHorizontalPhoto(bitmap), image, 80);
Intent intent = new Intent();
intent.putExtra("image_path", image.getAbsolutePath());
setResult(RESULT_OK, intent);
finish();
}
@Override
public void onVideo(CameraKitVideo cameraKitVideo) {
}
});
}
@Override
protected void onStart() {
super.onStart();
cameraView.start();
}
@Override
protected void onResume() {
super.onResume();
}
@Override
protected void onStop() {
super.onStop();
cameraView.stop();
}
@Override
public void onHttpSuccess(String action, Object result) {
}
}
...@@ -91,16 +91,16 @@ public class RegionFragment extends BaseFragment { ...@@ -91,16 +91,16 @@ public class RegionFragment extends BaseFragment {
//设置标题 //设置标题
switch (regionBean.getLevel()) { switch (regionBean.getLevel()) {
case RegionLevel.PROVINCE: case RegionLevel.PROVINCE:
topBar.setTitle(R.string.textview_personal_info_province_of_residence); topBar.setTitle(R.string.text_personal_info_province_of_residence);
break; break;
case RegionLevel.CITY: case RegionLevel.CITY:
topBar.setTitle(R.string.textview_personal_info_city_of_residence); topBar.setTitle(R.string.text_personal_info_city_of_residence);
break; break;
case RegionLevel.DISTRICT: case RegionLevel.DISTRICT:
topBar.setTitle(R.string.textview_personal_info_street_of_residence); topBar.setTitle(R.string.text_personal_info_street_of_residence);
break; break;
case RegionLevel.AREA: case RegionLevel.AREA:
topBar.setTitle(R.string.textview_personal_info_area_of_residence); topBar.setTitle(R.string.text_personal_info_area_of_residence);
break; break;
} }
//获取地区列表 //获取地区列表
......
...@@ -13,13 +13,17 @@ import com.facebook.accountkit.ui.AccountKitActivity; ...@@ -13,13 +13,17 @@ import com.facebook.accountkit.ui.AccountKitActivity;
import com.facebook.accountkit.ui.AccountKitConfiguration; import com.facebook.accountkit.ui.AccountKitConfiguration;
import com.facebook.accountkit.ui.LoginType; import com.facebook.accountkit.ui.LoginType;
import org.greenrobot.eventbus.EventBus;
import java.util.List; import java.util.List;
import tech.starwin.LibConfig; import tech.starwin.LibConfig;
import tech.starwin.broadcast.ActionEnum;
import tech.starwin.mvp.beans.TokenInfoBean; import tech.starwin.mvp.beans.TokenInfoBean;
import tech.starwin.mvp.beans.UserBean; import tech.starwin.mvp.beans.UserBean;
import tech.starwin.utils.context_utils.EasyActivityResult; import tech.starwin.utils.context_utils.EasyActivityResult;
import tech.starwin.utils.context_utils.ActivityJumper; import tech.starwin.utils.context_utils.ActivityJumper;
import tech.starwin.utils.event_bus.EventSender;
/** /**
* Created by SiKang on 2018/9/19. * Created by SiKang on 2018/9/19.
...@@ -52,12 +56,17 @@ public class LoginManager { ...@@ -52,12 +56,17 @@ public class LoginManager {
//清除登录状态 //清除登录状态
PreferencesManager.get().clearLoginInfo(); PreferencesManager.get().clearLoginInfo();
tokenInfo = null; tokenInfo = null;
//跳转登录界面 //广播通知
if (isActionSupport(LibConfig.getContext(), LibConfig.LOGIN_ACTIVITY_ACTION)) { LibConfig.getContext().sendBroadcast(new Intent(ActionEnum.LOGIN_INVALID.value()));
new ActivityJumper.Builder(LibConfig.getContext(), LibConfig.LOGIN_ACTIVITY_ACTION)
.build().start(); if (LibConfig.isDefaultLoginMode()) {
} else { //跳转登录界面
LogUtils.e(TAG, "找不到LoginActivity,请在build.gradle中配置正确的 ‘LOGIN_ACTIVITY_ACTION’ "); if (isActionSupport(LibConfig.getContext(), LibConfig.LOGIN_ACTIVITY_ACTION)) {
new ActivityJumper.Builder(LibConfig.getContext(), LibConfig.LOGIN_ACTIVITY_ACTION)
.build().start();
} else {
LogUtils.e(TAG, "找不到LoginActivity,请在build.gradle中配置正确的 ‘LOGIN_ACTIVITY_ACTION’ ");
}
} }
} }
...@@ -72,7 +81,6 @@ public class LoginManager { ...@@ -72,7 +81,6 @@ public class LoginManager {
LoginType.PHONE, LoginType.PHONE,
AccountKitActivity.ResponseType.CODE); // or .ResponseType.TOKEN AccountKitActivity.ResponseType.CODE); // or .ResponseType.TOKEN
intent.putExtra(AccountKitActivity.ACCOUNT_KIT_ACTIVITY_CONFIGURATION, configurationBuilder.build()); intent.putExtra(AccountKitActivity.ACCOUNT_KIT_ACTIVITY_CONFIGURATION, configurationBuilder.build());
new EasyActivityResult(activity).startForResult(intent, 0, new EasyActivityResult.OnResultListener() { new EasyActivityResult(activity).startForResult(intent, 0, new EasyActivityResult.OnResultListener() {
@Override @Override
public void onActivityResult(int requestCode, int resultCode, Intent data) { public void onActivityResult(int requestCode, int resultCode, Intent data) {
......
...@@ -8,6 +8,13 @@ import android.view.View; ...@@ -8,6 +8,13 @@ import android.view.View;
* Created by SiKang on 2018/10/22. * Created by SiKang on 2018/10/22.
*/ */
public class AnimatorGenerator { public class AnimatorGenerator {
public static final String ANIM_SCALE_X="scaleX";
public static final String ANIM_SCALE_Y="scaleY";
public static final String ANIM_ROTATION="rotation";
public static final String ANIM_TRANSLATION_X="translationX";
public static final String ANIM_TRANSLATION_Y="translationY";
public static final String ANIM_ALPHA="alpha";
public static ObjectAnimator createScaleXAnimator(View view, long duration, float... values) { public static ObjectAnimator createScaleXAnimator(View view, long duration, float... values) {
ObjectAnimator animator = ObjectAnimator.ofFloat(view, "scaleX", values); ObjectAnimator animator = ObjectAnimator.ofFloat(view, "scaleX", values);
...@@ -39,7 +46,6 @@ public class AnimatorGenerator { ...@@ -39,7 +46,6 @@ public class AnimatorGenerator {
return animator; return animator;
} }
/** /**
* 开关动画 * 开关动画
* 将打开动画参数取反序作为还原动作 * 将打开动画参数取反序作为还原动作
......
...@@ -28,6 +28,7 @@ import java.util.concurrent.TimeUnit; ...@@ -28,6 +28,7 @@ import java.util.concurrent.TimeUnit;
import io.reactivex.Observable; import io.reactivex.Observable;
import io.reactivex.android.schedulers.AndroidSchedulers; import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.functions.Consumer; import io.reactivex.functions.Consumer;
import tech.starwin.R;
import tech.starwin.base.RecyclerViewHolder; import tech.starwin.base.RecyclerViewHolder;
...@@ -78,6 +79,10 @@ public class DialogFactory { ...@@ -78,6 +79,10 @@ public class DialogFactory {
/** /**
* 创建一个带有文本提示和两个含义相对按钮的对话框 * 创建一个带有文本提示和两个含义相对按钮的对话框
*/ */
public static Dialog createYesOrNoDialog(Context context,String msg, final OnYesOrNoListener onYesOrNoListener) {
return createYesOrNoDialog(context, "Tip", msg, context.getString(R.string.text_sure), context.getString(R.string.text_cancel), onYesOrNoListener);
}
public static Dialog createYesOrNoDialog(Context context, String title, String msg, String yesBtnText, String noBtnText, final OnYesOrNoListener onYesOrNoListener) { public static Dialog createYesOrNoDialog(Context context, String title, String msg, String yesBtnText, String noBtnText, final OnYesOrNoListener onYesOrNoListener) {
final Dialog dialog = new QMUIDialog.MessageDialogBuilder(context) final Dialog dialog = new QMUIDialog.MessageDialogBuilder(context)
.setTitle(title) .setTitle(title)
...@@ -95,7 +100,6 @@ public class DialogFactory { ...@@ -95,7 +100,6 @@ public class DialogFactory {
} }
}) })
.create(); .create();
return dialog; return dialog;
} }
......
...@@ -9,12 +9,16 @@ import android.graphics.drawable.Drawable; ...@@ -9,12 +9,16 @@ import android.graphics.drawable.Drawable;
import android.support.annotation.DrawableRes; import android.support.annotation.DrawableRes;
import android.support.annotation.StringRes; import android.support.annotation.StringRes;
import android.support.v4.content.ContextCompat; import android.support.v4.content.ContextCompat;
import android.view.LayoutInflater;
import android.view.View; import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageButton; import android.widget.ImageButton;
import android.widget.ImageView; import android.widget.ImageView;
import com.qmuiteam.qmui.util.QMUIStatusBarHelper;
import com.qmuiteam.qmui.widget.QMUIEmptyView; import com.qmuiteam.qmui.widget.QMUIEmptyView;
import com.qmuiteam.qmui.widget.QMUITabSegment; import com.qmuiteam.qmui.widget.QMUITabSegment;
import com.qmuiteam.qmui.widget.QMUITopBar;
import com.qmuiteam.qmui.widget.grouplist.QMUICommonListItemView; import com.qmuiteam.qmui.widget.grouplist.QMUICommonListItemView;
import com.qmuiteam.qmui.widget.grouplist.QMUIGroupListView; import com.qmuiteam.qmui.widget.grouplist.QMUIGroupListView;
...@@ -27,6 +31,7 @@ import tech.starwin.widget.PageStateLayout; ...@@ -27,6 +31,7 @@ import tech.starwin.widget.PageStateLayout;
* QMUI辅助类 * QMUI辅助类
*/ */
public class QMUIHelper { public class QMUIHelper {
private static TopbarCustomizer topbarCustomizer;
/** /**
* 重新设置topbarimagebutton的图片尺寸 * 重新设置topbarimagebutton的图片尺寸
...@@ -142,4 +147,43 @@ public class QMUIHelper { ...@@ -142,4 +147,43 @@ public class QMUIHelper {
itemWithChevron.setAccessoryType(QMUICommonListItemView.ACCESSORY_TYPE_CHEVRON); itemWithChevron.setAccessoryType(QMUICommonListItemView.ACCESSORY_TYPE_CHEVRON);
return itemWithChevron; return itemWithChevron;
} }
/**
* 向一个ViewGroup 插入一个TopBar
*/
public static QMUITopBar insertTopBar(ViewGroup viewGroup, boolean isTransParentStatusBar) {
ViewGroup titleGroup = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.base_topbar, viewGroup, true).findViewById(R.id.layout_title);
QMUITopBar topBar = titleGroup.findViewById(R.id.layout_topbar);
//如果开启沉浸式状态栏,则获取状态栏高度,并将Top扩大相应的高度
if (isTransParentStatusBar) {
View statusBar = titleGroup.findViewById(R.id.layout_statusbar);
statusBar.setVisibility(View.VISIBLE);
ViewGroup.LayoutParams layoutParams = statusBar.getLayoutParams();
layoutParams.height = QMUIStatusBarHelper.getStatusbarHeight(viewGroup.getContext());
statusBar.setLayoutParams(layoutParams);
}
if (topbarCustomizer != null) {
topbarCustomizer.madeTopBar(titleGroup, topBar);
}
return topBar;
}
public static void setTopbarCustomizer(TopbarCustomizer customizer) {
topbarCustomizer = customizer;
}
/**
* TopBar默认样式定制
*/
public interface TopbarCustomizer {
/**
* @param titleGroup 包含 TopBar 的Title模块,在使用沉浸式状态栏时,会在TopBar上方填充对应的高度
* @param topBar
*/
void madeTopBar(ViewGroup titleGroup, QMUITopBar topBar);
}
} }
...@@ -25,6 +25,7 @@ import android.text.TextUtils; ...@@ -25,6 +25,7 @@ import android.text.TextUtils;
import android.text.style.ForegroundColorSpan; import android.text.style.ForegroundColorSpan;
import android.util.DisplayMetrics; import android.util.DisplayMetrics;
import android.view.KeyEvent; import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.view.WindowManager; import android.view.WindowManager;
...@@ -33,10 +34,14 @@ import android.widget.EditText; ...@@ -33,10 +34,14 @@ import android.widget.EditText;
import android.widget.TextView; import android.widget.TextView;
import android.widget.Toast; import android.widget.Toast;
import com.qmuiteam.qmui.util.QMUIStatusBarHelper;
import com.qmuiteam.qmui.widget.QMUITopBar;
import io.reactivex.Observable; import io.reactivex.Observable;
import io.reactivex.ObservableEmitter; import io.reactivex.ObservableEmitter;
import io.reactivex.ObservableOnSubscribe; import io.reactivex.ObservableOnSubscribe;
import io.reactivex.schedulers.Schedulers; import io.reactivex.schedulers.Schedulers;
import tech.starwin.R;
import tech.starwin.utils.BitmapUtils; import tech.starwin.utils.BitmapUtils;
import tech.starwin.widget.PageStateLayout; import tech.starwin.widget.PageStateLayout;
...@@ -131,6 +136,16 @@ public class UIHelper { ...@@ -131,6 +136,16 @@ public class UIHelper {
} }
/** /**
* 显示View
*/
public static void showFirst(View view, View... views) {
view.setVisibility(View.VISIBLE);
for (View v : views) {
v.setVisibility(View.GONE);
}
}
/**
* 隐藏View * 隐藏View
*/ */
public static void hideViews(View view, View... views) { public static void hideViews(View view, View... views) {
......
...@@ -7,6 +7,7 @@ import android.support.annotation.NonNull; ...@@ -7,6 +7,7 @@ import android.support.annotation.NonNull;
import com.qmuiteam.qmui.widget.dialog.QMUITipDialog; import com.qmuiteam.qmui.widget.dialog.QMUITipDialog;
import tech.starwin.LibConfig;
import tech.starwin.utils.ui_utils.DialogFactory; import tech.starwin.utils.ui_utils.DialogFactory;
...@@ -22,7 +23,12 @@ public class ProgressDialog { ...@@ -22,7 +23,12 @@ public class ProgressDialog {
public ProgressDialog(@NonNull Context context) { public ProgressDialog(@NonNull Context context) {
this.context = context; this.context = context;
this.loadingDialog = new LoadingDialog(context); //如果配置了icon,使用icon加载动画,否则用默认动画
if (LibConfig.LOADING_ICON != 0) {
this.loadingDialog = new LoadingDialog(context);
} else {
this.loadingDialog = DialogFactory.createTipDialog(context, QMUITipDialog.Builder.ICON_TYPE_LOADING, "Loading");
}
} }
public ProgressDialog(@NonNull Dialog loadingDialog) { public ProgressDialog(@NonNull Dialog loadingDialog) {
......
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/face_tb" />
<item>
<bitmap
android:gravity="right|bottom"
android:src="@drawable/frame_wrong" />
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/face_tc" />
<item>
<bitmap
android:gravity="right|bottom"
android:src="@drawable/frame_wrong" />
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/face_tf" />
<item>
<bitmap
android:gravity="right|bottom"
android:src="@drawable/frame_wrong" />
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/face_right"/>
<item>
<bitmap android:src="@drawable/frame_right" android:gravity="right|bottom"/>
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/id_right" />
<item>
<bitmap
android:gravity="right|bottom"
android:src="@drawable/frame_right" />
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/id_wrong_left" />
<item>
<bitmap
android:gravity="right|bottom"
android:src="@drawable/frame_wrong" />
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/id_wrong_middle" />
<item>
<bitmap
android:gravity="right|bottom"
android:src="@drawable/frame_wrong" />
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/id_wrong_right" />
<item>
<bitmap
android:gravity="right|bottom"
android:src="@drawable/frame_wrong" />
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="5dp" />
<stroke
android:width="1dp"
android:color="@color/checked_color" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="5dp" />
<solid android:color="@color/checked_color" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white" />
<corners android:radius="5dp" />
<padding
android:bottom="10dp"
android:left="10dp"
android:right="10dp"
android:top="10dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/activity_repaymentGuide_tv"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
\ No newline at end of file
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/containerImg"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray_bg">
<com.wonderkiln.camerakit.CameraView
android:id="@+id/cameraView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:focusableInTouchMode="true" />
<LinearLayout
android:id="@+id/imageview_id_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:visibility="gone">
<View
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#e0000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.qmuiteam.qmui.widget.QMUIVerticalTextView
android:id="@+id/verticalTextView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_margin="@dimen/x_20"
android:paddingBottom="@dimen/x_50"
android:paddingTop="@dimen/x_50"
android:text="@string/take_ktp_tip_footer"
android:textColor="@color/white" />
<ImageView
android:id="@+id/activity_takephoto_mask_imv"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:focusableInTouchMode="false" />
<com.qmuiteam.qmui.widget.QMUIVerticalTextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="@dimen/x_20"
android:paddingBottom="@dimen/x_50"
android:paddingTop="@dimen/x_50"
android:text="@string/take_ktp_tip_header"
android:textColor="@color/white" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#e0000000" />
</LinearLayout>
</FrameLayout>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="110dp"
android:background="@color/gray_bg">
<ImageView
android:id="@+id/button_shoot"
android:layout_width="@dimen/x_200"
android:layout_height="@dimen/x_200"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:rotation="90" />
<Button
android:id="@+id/button_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="18dp"
android:background="@null"
android:rotation="90.0"
android:text="@string/text_cancel" />
</RelativeLayout>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<com.qmuiteam.qmui.widget.QMUITopBar xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/layout_title"
android:id="@+id/layout_topbar"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="@dimen/x_150" /> android:layout_height="wrap_content"
android:background="@color/main_color"
android:orientation="vertical">
<TextView
android:id="@+id/layout_statusbar"
android:layout_width="match_parent"
android:layout_height="@dimen/x_40"
android:visibility="gone" />
<com.qmuiteam.qmui.widget.QMUITopBar
android:id="@+id/layout_topbar"
android:layout_width="match_parent"
android:layout_height="@dimen/x_150" />
</LinearLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/shape_rectangle_navy_solid"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="12dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="12dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:src="@drawable/img_face_right"
android:textColor="@color/qmui_config_color_gray_3" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:gravity="center"
android:text="@string/must_be_ownself"
android:textColor="@color/qmui_config_color_gray_3" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:gravity="center"
android:text="@string/face_instruction"
android:textColor="@color/qmui_config_color_gray_3" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/face_tooc" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/too_close"
android:textColor="@color/qmui_config_color_gray_3" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/face_toof" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/too_far"
android:textColor="@color/qmui_config_color_gray_3" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/face_toob" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/too_bright"
android:textColor="@color/qmui_config_color_gray_3" />
</LinearLayout>
</LinearLayout>
<Button
android:id="@+id/dialog_facePhoto_ok_btn"
style="@style/main_color_roundBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:text="@string/button_ok" />
</LinearLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shape_rectangle_navy_solid"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:padding="10dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:gravity="center"
android:text="@string/take_id_photo_header_right"
android:textColor="@color/main_color"
android:textSize="@dimen/x_45" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:src="@drawable/img_id_right" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:orientation="vertical"
android:padding="10dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:gravity="center"
android:text="@string/take_id_photo_wrong"
android:textColor="@color/main_color" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="center"
android:src="@drawable/id_wrong_left" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:gravity="center"
android:text="@string/take_id_photo_wrong_left"
android:textColor="@color/main_color" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_weight="1"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="center"
android:src="@drawable/id_wrong_middle" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:gravity="center"
android:text="@string/take_id_photo_wrong_middle"
android:textColor="@color/main_color" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_weight="1"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="center"
android:src="@drawable/id_wrong_right" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:gravity="center"
android:text="@string/take_id_photo_wrong_right"
android:textColor="@color/main_color" />
</LinearLayout>
</LinearLayout>
<Button
android:id="@+id/dialog_idPhoto_ok_btn"
style="@style/main_color_roundBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:gravity="center"
android:text="@string/btn_continue" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical"
android:paddingBottom="20dp"
android:paddingLeft="14dp"
android:paddingRight="14dp"
android:paddingTop="20dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/iv_ktp_alert"
android:layout_width="270dp"
android:layout_height="150dp"
android:scaleType="center"
android:src="@drawable/id_right" />
<TextView
android:id="@+id/tv_ktp_alert"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="18dp"
android:gravity="center"
android:text="@string/text_shoot_work_card_front"
android:textColor="@color/main_color" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:gravity="center"
android:text="@string/text_shoot_photo_clear_tips"
android:textColor="@color/main_color" />
<Button
android:id="@+id/dialog_takeWorkPhoto_ok_btn"
style="@style/main_color_roundBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="24dp"
android:text="@string/text_button_start_taking_photos" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="@dimen/x_50"
android:paddingRight="@dimen/x_50">
<TextView
android:id="@+id/item_repaymentGuide_title_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/x_80"
android:textColor="@color/qmui_config_color_gray_4"
android:textSize="@dimen/x_50" />
<TextView
android:id="@+id/item_repaymentGuide_detail_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/x_50"
android:textColor="@color/qmui_config_color_gray_8"
android:textSize="@dimen/x_30" />
</LinearLayout>
\ No newline at end of file
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
<resources> <resources>
<string name="login">Login</string> <string name="login">Login</string>
<string name="text_welcome">Welcome,</string>
<string name="edittext_phone_number_hint">Please enter your mobile number</string> <string name="edittext_phone_number_hint">Please enter your mobile number</string>
<string name="edittext_SMS_code_hint">Please enter the sms code</string> <string name="edittext_SMS_code_hint">Please enter the sms code</string>
...@@ -11,20 +12,27 @@ ...@@ -11,20 +12,27 @@
<string name="login_statement">Click the agree button \ "Registration and Privacy Service Agreement \"</string> <string name="login_statement">Click the agree button \ "Registration and Privacy Service Agreement \"</string>
<string name="textview_loan">Loan</string>
<string name="textview_certification">Certification</string>
<string name="textview_me">My</string>
<string name="text_loan">Loan</string>
<string name="text_certification">Certification</string>
<string name="text_me">My</string>
<string name="textview_me_my_loan">My Loans</string>
<string name="textview_me_security_setting">Security Settings</string>
<string name="textview_me_help_center">Help Center</string>
<string name="textview_me_customer_service_hotline">Customer Service Hotline</string>
<string name="textview_online_QA">Online Services</string>
<string name="text_me_my_loan">My Loans</string>
<string name="text_me_security_setting">Security Settings</string>
<string name="text_me_help_center">Help Center</string>
<string name="text_me_customer_service_hotline">Customer Service Hotline</string>
<string name="text_online_QA">Online Services</string>
<string name="service_agreement">Terms of Service</string>
<string name="text_activity_center">Activity Center</string>
<string name="text_notification">Notification</string>
<string name="text_about">About Us</string>
<string name="textview_loan_amount_statement">Please select the loan amount</string> <string name="text_apply">Apply</string>
<string name="textview_loan_replayment_statement">Please select a payment deadline</string> <string name="txt_upload_ID">Upload your photo ID</string>
<string name="text_loan_amount_statement">Please select the loan amount</string>
<string name="text_loan_replayment_statement">Please select a payment deadline</string>
<string name="RP600k">₱ 600.000</string> <string name="RP600k">₱ 600.000</string>
<string name="RP1200K">₱ 1.200.000</string> <string name="RP1200K">₱ 1.200.000</string>
<string name="loan_7days">7 Days</string> <string name="loan_7days">7 Days</string>
...@@ -33,58 +41,66 @@ ...@@ -33,58 +41,66 @@
<string name="repayment_statement">Amount of Repayment</string> <string name="repayment_statement">Amount of Repayment</string>
<string name="total_repayment">₱ 1.070.000</string> <string name="total_repayment">₱ 1.070.000</string>
<string name="button_current_loan">Loan Now</string> <string name="button_current_loan">Loan Now</string>
<string name="textview_steps">Only with 4 steps.The fastest loan in 20 minutes. </string> <string name="text_steps">Only with 4 steps.The fastest loan in 20 minutes. </string>
<string name="textview_repayment_raiders">See How to Repayment a Loan</string> <string name="text_repayment_raiders">See How to Repayment a Loan >></string>
<string name="text_relationship">Relationship</string>
<string name="input_invalid">Please enter the complete information</string>
<string name="text_certify_account">Verification below is optional, through verification can increase the possibility of an application in the ACC</string>
<string name="textview_loan_amount">Loan Amount</string> <string name="text_loan_amount">Loan Amount</string>
<string name="textview_repayment_time">Due date</string> <string name="text_repayment_time">Due date</string>
<string name="text_optional">optional</string>
<string name="loan_duration">Loan duration</string>
<string name="textview_receiving_bank">Name of Issue Bank</string> <string name="text_receiving_bank">Name of Issue Bank</string>
<string name="editText_bank_number">Recipient Account Number</string> <string name="editText_bank_number">Recipient Account Number</string>
<string name="editText_confirm_bank_number">Confirm Recipient Account Number</string> <string name="editText_confirm_bank_number">Confirm Recipient Account Number</string>
<string name="editText_use_loan">Loan Purpose</string> <string name="editText_use_loan">Loan Purpose</string>
<string name="textview_title_personal_info">Personal information</string> <string name="text_title_personal_info">Personal information</string>
<string name="textview_field_personal_info">Personal information</string> <string name="text_field_personal_info">Personal information</string>
<string name="textview_field_personal_info_2">Personal\ninformation</string> <string name="text_field_personal_info_2">Personal\ninformation</string>
<string name="textview_field_professional_info">Professional Information</string> <string name="text_field_professional_info">Professional Information</string>
<string name="textview_field_professional_info_2">Professional\ninformation</string> <string name="text_field_professional_info_2">Professional\ninformation</string>
<string name="textview_field_Upload_photos">Upload Photo</string> <string name="text_field_Upload_photos">Upload Photo</string>
<string name="textview_authentication">Authentication</string> <string name="text_authentication">Authentication</string>
<string name="textview_progress_data_integrity">Data Integrity: </string> <string name="text_progress_data_integrity">Data Integrity: </string>
<string name="textview_progress_rating"> 0% </string> <string name="text_progress_rating"> 0% </string>
<string name="button_certification_submit">Submit</string> <string name="button_certification_submit">Submit</string>
<string name="textview_remain_days">05</string> <string name="text_remain_days">05</string>
<string name="textview_unit_days">Day</string> <string name="text_unit_days">Day</string>
<string name="textview_unit_tips_expird">You\'re late</string> <string name="text_unit_tips_expird">You\'re late</string>
<string name="textview_unit_tips">From the due date</string> <string name="text_unit_tips">From the due date</string>
<string name="textview_remaining_days">Time Deadline</string> <string name="text_remaining_days">Time Deadline</string>
<string name="textview_repayment_amount">₱ 642.000</string> <string name="text_repayment_amount">₱ 642.000</string>
<string name="textview_repayment_amount_text">Amount of Repayment</string> <string name="text_repayment_amount_text">Amount of Repayment</string>
<string name="textview_expiry_date">2017-1-30</string> <string name="text_expiry_date">2017-1-30</string>
<string name="textview_expiry_date_text">Due date</string> <string name="text_expiry_date_text">Due date</string>
<string name="buttom_want_to_Repay">I want to repay</string> <string name="buttom_want_to_Repay">I want to repay</string>
<string name="textview_been_payment_text">Has been refunded: </string> <string name="text_been_payment_text">Has been refunded: </string>
<string name="textview_total_acount">₱ 642.000</string> <string name="text_total_acount">₱ 642.000</string>
<string name="textview_total_text">Total: </string> <string name="text_total_text">Total: </string>
<string name="textview_remain_text">Rest:</string> <string name="text_remain_text">Rest:</string>
<string name="textview_been_payment_account">₱ 42.000</string> <string name="text_been_payment_account">₱ 42.000</string>
<string name="textview_title_system_message">System Message</string> <string name="text_title_system_message">System Message</string>
<string name="textview_customer_service_hotline">Customer Service HotLine</string> <string name="text_customer_service_hotline">Customer Service HotLine</string>
<string name="textview_bank_select_statement">Please select a bank to repayment the loan</string> <string name="text_bank_select_statement">Please select a bank to repayment the loan</string>
<string name="button_bank_determine">Choose</string> <string name="button_bank_determine">Choose</string>
...@@ -93,63 +109,63 @@ ...@@ -93,63 +109,63 @@
<string name="edittext_personal_info_family_name_in_law">family name</string> <string name="edittext_personal_info_family_name_in_law">family name</string>
<string name="textview_personal_info_gender">gender</string> <string name="text_personal_info_gender">gender</string>
<string name="textview_personal_info_education">education</string> <string name="text_personal_info_education">education</string>
<string name="textview_personal_info_marital_status">marital status</string> <string name="text_personal_info_marital_status">marital status</string>
<string name="textview_personal_info_number_of_children">children number</string> <string name="text_personal_info_number_of_children">children number</string>
<string name="textview_personal_info_province_of_residence">Residence province</string> <string name="text_personal_info_province_of_residence">Residence province</string>
<string name="textview_personal_info_city_of_residence">Residence city</string> <string name="text_personal_info_city_of_residence">Residence city</string>
<string name="textview_personal_info_street_of_residence">Residence street</string> <string name="text_personal_info_street_of_residence">Residence street</string>
<string name="textview_personal_info_area_of_residence">Residence area</string> <string name="text_personal_info_area_of_residence">Residence area</string>
<string name="textview_personal_info_address">Address</string> <string name="text_personal_info_address">Address</string>
<string name="textview_personal_info_duration_of_residence">residence duration</string> <string name="text_personal_info_duration_of_residence">residence duration</string>
<string name="textview_personal_info_phone_number_verification">phone number</string> <string name="text_personal_info_phone_number_verification">phone number</string>
<string name="textview_personal_info_facebook">Facebook</string> <string name="text_personal_info_facebook">Facebook</string>
<string name="textview_personal_info_memverifikasi_info">Verify online shopping info (optional)</string> <string name="text_personal_info_memverifikasi_info">Verify online shopping info (optional)</string>
<string name="textview_job_info_title">Employment Information</string> <string name="text_job_info_title">Employment Information</string>
<string name="textview_job_info_job_type">job type</string> <string name="text_job_info_job_type">job type</string>
<string name="textview_job_info_monthly_income">income monthly</string> <string name="text_job_info_monthly_income">income monthly</string>
<string name="edittext_job_info_company_name">company name</string> <string name="edittext_job_info_company_name">company name</string>
<string name="textview_job_info_province_of_company_located">company province</string> <string name="text_job_info_province_of_company_located">company province</string>
<string name="textview_job_info_city_of_company_located">company city</string> <string name="text_job_info_city_of_company_located">company city</string>
<string name="textview_job_info_street_of_company_located">company street</string> <string name="text_job_info_street_of_company_located">company street</string>
<string name="textview_job_info_city_in_the_village">company area</string> <string name="text_job_info_city_in_the_village">company area</string>
<string name="edittext_job_info_address">address</string> <string name="edittext_job_info_address">address</string>
<string name="edittext_job_info_tel_of_company">company tel.</string> <string name="edittext_job_info_tel_of_company">company tel.</string>
<string name="textview_job_info_work_email">email (optional)</string> <string name="text_job_info_work_email">email (optional)</string>
<string name="textview_job_info_email_verification">email verification (optional)</string> <string name="text_job_info_email_verification">email verification (optional)</string>
<string name="textview_job_info_statement">filling in optional information will speed up our review process </string> <string name="text_job_info_statement">filling in optional information will speed up our review process </string>
<string name="textview_contacts_info_father_mother">father/mother/other close relatives</string> <string name="text_contacts_info_father_mother">father/mother/other close relatives</string>
<string name="edittext_contacts_info_name">name</string> <string name="edittext_contacts_info_name">name</string>
<string name="textview_field_contract_info">Contact Info</string> <string name="text_field_contract_info">Contact Info</string>
<string name="textview_field_contract_info_2">Contact\ninformation</string> <string name="text_field_contract_info_2">Contact\ninformation</string>
<string name="edittext_contacts_info_telephone">tel.</string> <string name="edittext_contacts_info_telephone">tel.</string>
<string name="textview_contacts_info_friend">friend</string> <string name="text_contacts_info_friend">friend</string>
<string name="textview_upload_photos_statement_ktp_front">id photo</string> <string name="text_upload_photos_statement_ktp_front">id photo</string>
<string name="textview_upload_photps_statement_work_card_photo">work permit photo</string> <string name="text_upload_photps_statement_work_card_photo">work permit photo</string>
<string name="textView_upload_photps_statement_work_card_photo_2">(If no you can wearing work uniform)</string> <string name="textView_upload_photps_statement_work_card_photo_2">(If no you can wearing work uniform)</string>
<string name="textview_loan_info_statement">Loan Information:</string> <string name="text_loan_info_statement">Loan Information:</string>
<string name="button_loan_info_cancel">Cancel</string> <string name="button_loan_info_cancel">Cancel</string>
<string name="textview_loan_info_audit_passed">approved</string> <string name="text_loan_info_audit_passed">approved</string>
<string name="textview_loan_info_loan_qualified">qualified loan</string> <string name="text_loan_info_loan_qualified">qualified loan</string>
<string name="textview_laon_info_audit_passed_statement">the first review has been approved, please keep your phone online</string> <string name="text_laon_info_audit_passed_statement">the first review has been approved, please keep your phone online</string>
<string name="textview_loan_info_loan_qualified_statement">the review has been approved</string> <string name="text_loan_info_loan_qualified_statement">the review has been approved</string>
<string name="textview_status">Status</string> <string name="text_status">Status</string>
<string name="button_logout">Log out</string> <string name="button_logout">Log out</string>
<string name="textview_loan_raiders">How to Borrow</string> <string name="text_loan_raiders">How to Borrow</string>
<string name="textview_repayment_raiders_2">How to repayment the Loan</string> <string name="text_repayment_raiders_2">How to repayment the Loan</string>
<string name="text_title_about">About Us</string> <string name="text_title_about">About Us</string>
...@@ -175,12 +191,12 @@ ...@@ -175,12 +191,12 @@
<string name="text_loanraiders_step5">Wait for the loan, the loan will be issued into your account within 5-10 minutes</string> <string name="text_loanraiders_step5">Wait for the loan, the loan will be issued into your account within 5-10 minutes</string>
<string name="textview_video_title">Video Contract</string> <string name="text_video_title">Video Contract</string>
<string name="textview_video_tips">Please complete the video contract and audit process, the loan will arrive soon</string> <string name="text_video_tips">Please complete the video contract and audit process, the loan will arrive soon</string>
<string name="textview_video_tips2">If your submission is rejected, your video does not apply</string> <string name="text_video_tips2">If your submission is rejected, your video does not apply</string>
<string name="textview_video_read_tips">please record with good light and read aloud <string name="text_video_read_tips">please record with good light and read aloud
  if not read the submission will be rejected:</string>   if not read the submission will be rejected:</string>
<string name="textview_video_statement">* I have agreed to the terms of the 《Loan Guarantee Agreement》</string> <string name="text_video_statement">* I have agreed to the terms of the 《Loan Guarantee Agreement》</string>
<string name="button_video_start">Start</string> <string name="button_video_start">Start</string>
<string name="button_video_re_record">ReStart</string> <string name="button_video_re_record">ReStart</string>
<string name="button_video_Pause">Pause</string> <string name="button_video_Pause">Pause</string>
...@@ -252,7 +268,7 @@ ...@@ -252,7 +268,7 @@
<string name="text_shoot_work_card_front">Photos with work uniforms \n or \n along with worker\'s identification</string> <string name="text_shoot_work_card_front">Photos with work uniforms \n or \n along with worker\'s identification</string>
<string name="textview_me_my_repayment_log">My Loan Repayment</string> <string name="text_me_my_repayment_log">My Loan Repayment</string>
<string name="text_my_loan_not_loan">You do not have a loan yet, try it now</string> <string name="text_my_loan_not_loan">You do not have a loan yet, try it now</string>
...@@ -618,7 +634,7 @@ ...@@ -618,7 +634,7 @@
<string name="text_day_before_yesterday">2 yesterday</string> <string name="text_day_before_yesterday">2 yesterday</string>
<string name="textview_repayment_raiders_tips">You can repay the loan in the following way:</string> <string name="text_repayment_raiders_tips">You can repay the loan in the following way:</string>
<string name="textView_repayment_raiders_warns">This transaction can be done through all banks and Alfamart</string> <string name="textView_repayment_raiders_warns">This transaction can be done through all banks and Alfamart</string>
<string name="show_not_login_yet">Not Login</string> <string name="show_not_login_yet">Not Login</string>
<string name="show_no_message">No message</string> <string name="show_no_message">No message</string>
...@@ -645,7 +661,7 @@ ...@@ -645,7 +661,7 @@
<string name="goto_record_video">Record, video</string> <string name="goto_record_video">Record, video</string>
<string name="same_name">Enter the same contact name</string> <string name="same_name">Enter the same contact name</string>
<string name="same_number">Enter the same contact number</string> <string name="same_number">Enter the same contact number</string>
<string name="textview_me_my_invite">Invite friends</string> <string name="text_me_my_invite">Invite friends</string>
<string name="text_invite_award">Successfully inviting friends to borrow will get a fund ₱ 60.000</string> <string name="text_invite_award">Successfully inviting friends to borrow will get a fund ₱ 60.000</string>
<string name="text_invite_info_detail">Activity time ends: 30-5-2017 \n Gifts will be shared after the activity ends. If there is any problem, please contact whatsapp: 08327463726</string> <string name="text_invite_info_detail">Activity time ends: 30-5-2017 \n Gifts will be shared after the activity ends. If there is any problem, please contact whatsapp: 08327463726</string>
<string name="text_my_invite_code">Invite Code:</string> <string name="text_my_invite_code">Invite Code:</string>
...@@ -661,13 +677,13 @@ ...@@ -661,13 +677,13 @@
<string name="show_input_areacode">Please enter the area code</string> <string name="show_input_areacode">Please enter the area code</string>
<string name="loading_storing_img">loading images</string> <string name="loading_storing_img">loading images</string>
<string name="show_preparing">prepare</string> <string name="show_preparing">prepare</string>
<string name="textview_video_re_record">Record</string> <string name="text_video_re_record">Record</string>
<string name="textview_video_pause">Pause</string> <string name="text_video_pause">Pause</string>
<string name="textview_video_complete"><![CDATA[complete&\npreview]]></string> <string name="text_video_complete"><![CDATA[complete&\npreview]]></string>
<string name="text_id_custom_service">Customer Service Online</string> <string name="text_id_custom_service">Customer Service Online</string>
<string name="loan_result_title_approved">Loan Apply Approved</string> <string name="loan_result_title_approved">Loan Apply Approved</string>
<string name="loan_result_tip_approved">Please check your bank account</string> <string name="loan_result_tip_approved">Please check your bank account</string>
<string name="loan_result_botton">OKAY</string> <string name="text_sure">OKAY</string>
<string name="loan_result_title_rejected">Sorry, your submission was rejected!</string> <string name="loan_result_title_rejected">Sorry, your submission was rejected!</string>
<string name="loan_close_resion">1.Your information is incorrect\n2.The image is not clear.</string> <string name="loan_close_resion">1.Your information is incorrect\n2.The image is not clear.</string>
<string name="loan_result_tip_rejected">Please try again after 7 days.</string> <string name="loan_result_tip_rejected">Please try again after 7 days.</string>
...@@ -711,11 +727,11 @@ ...@@ -711,11 +727,11 @@
<string name="button_to_take_video">Upload Your Videos</string> <string name="button_to_take_video">Upload Your Videos</string>
<string name="show_input_error">Please check and try again</string> <string name="show_input_error">Please check and try again</string>
<string name="textview_username">Please login</string> <string name="text_username">Please login</string>
<string name="textview_phone">Click to login</string> <string name="text_phone">Click to login</string>
<string name="text_special_doku">BLUEPAY</string> <string name="text_special_doku">BLUEPAY</string>
<string name="text_wrong_ktp_tips">Please enter 16 digits no.</string> <string name="text_wrong_ktp_tips">Please enter 16 digits no.</string>
<string name="textview_register_login">Register / Login</string> <string name="text_register_login">Register / Login</string>
<string name="cancel_loan_app_alert_dialog">Are you sure you want to cancel the loan?</string> <string name="cancel_loan_app_alert_dialog">Are you sure you want to cancel the loan?</string>
<string name="dialog_ensure_logout">Are you sure you want to quit?</string> <string name="dialog_ensure_logout">Are you sure you want to quit?</string>
...@@ -725,7 +741,7 @@ ...@@ -725,7 +741,7 @@
<string name="payment_mandiri">MANDIRI</string> <string name="payment_mandiri">MANDIRI</string>
<string name="payment_bni">BNI</string> <string name="payment_bni">BNI</string>
<string name="payment_others">Other banks</string> <string name="payment_others">Other banks</string>
<string name="textview_loaning_tips">*The name on the account must be the same as the borrower\'s name</string> <string name="text_loaning_tips">*The name on the account must be the same as the borrower\'s name</string>
<string name="dialog_closed_revisi">REVISION</string> <string name="dialog_closed_revisi">REVISION</string>
...@@ -756,12 +772,12 @@ ...@@ -756,12 +772,12 @@
<string name="button_copy_code">Copy the code</string> <string name="button_copy_code">Copy the code</string>
<string name="textview_coupon_choose">Select available coupons</string> <string name="text_coupon_choose">Select available coupons</string>
<string name="title_activity_detail">Activity details</string> <string name="title_activity_detail">Activity details</string>
<string name="title_choose_coupon">Select available coupons</string> <string name="title_choose_coupon">Select available coupons</string>
<string name="button_video_play">Play</string> <string name="button_video_play">Play</string>
<string name="text_invite_code_login_tips">*Only valid for first login</string> <string name="text_invite_code_login_tips">*Only valid for first login</string>
<string name="textview_loan_period">Loan Period</string> <string name="text_loan_period">Loan Period</string>
<string name="title_loan_info">Loan Info</string> <string name="title_loan_info">Loan Info</string>
<string name="show_read_agreement">Please read and accept the loan agreement to proceed to the next step</string> <string name="show_read_agreement">Please read and accept the loan agreement to proceed to the next step</string>
<string name="btn_read_agreemment">Agreement</string> <string name="btn_read_agreemment">Agreement</string>
...@@ -780,7 +796,7 @@ ...@@ -780,7 +796,7 @@
<string name="toast_input_password_longger_than_five">Please input password logger than five</string> <string name="toast_input_password_longger_than_five">Please input password logger than five</string>
<string name="title_area_selector">select area</string> <string name="title_area_selector">select area</string>
<string name="show_has_copyed_to_clip_board">invite code has copyed</string> <string name="show_has_copyed_to_clip_board">invite code has copyed</string>
<string name="textview_personal_info_region">Region info</string> <string name="text_personal_info_region">Region info</string>
<string name="text_get_more_message">--More messages--</string> <string name="text_get_more_message">--More messages--</string>
<string name="text_choose_pic">Select an photo</string> <string name="text_choose_pic">Select an photo</string>
<string name="text_take_photo">take photo</string> <string name="text_take_photo">take photo</string>
...@@ -791,10 +807,10 @@ ...@@ -791,10 +807,10 @@
<string name="text_coupon_usable_period">Receive:</string> <string name="text_coupon_usable_period">Receive:</string>
<string name="btn_use_coupon">Use Immediately</string> <string name="btn_use_coupon">Use Immediately</string>
<string name="to">For</string> <string name="to">For</string>
<string name="textview_refrash">==Refresh==</string> <string name="text_refrash">==Refresh==</string>
<string name="show_download_message_failed">Download message failed</string> <string name="show_download_message_failed">Download message failed</string>
<string name="show_sms_send_too_much">sms send too much in one hour,try latter</string> <string name="show_sms_send_too_much">sms send too much in one hour,try latter</string>
<string name="textview_coupon_limit">Not allowed to use other coupons</string> <string name="text_coupon_limit">Not allowed to use other coupons</string>
<string name="enum_education_DIPLOMA_I">DIPLOMA_I</string> <string name="enum_education_DIPLOMA_I">DIPLOMA_I</string>
...@@ -820,7 +836,6 @@ ...@@ -820,7 +836,6 @@
<string name="faceid_detect_success">face detects success</string> <string name="faceid_detect_success">face detects success</string>
<string name="network_error">No network connection</string> <string name="network_error">No network connection</string>
<string name="btn_continue">Next</string> <string name="btn_continue">Next</string>
// yitu
<string name="initialize_fail">initialize failed</string> <string name="initialize_fail">initialize failed</string>
<string name="tips_title">tips</string> <string name="tips_title">tips</string>
...@@ -853,7 +868,7 @@ ...@@ -853,7 +868,7 @@
<string name="need_permission">Need %s permission to make the program work properly. Please go to the permission setting center to allow this permission.</string> <string name="need_permission">Need %s permission to make the program work properly. Please go to the permission setting center to allow this permission.</string>
<string name="error_occured">An error occurred</string> <string name="error_occured">An error occurred</string>
<string name="call_log_alert">We need your call log information to determine your identity and speed up the loan, please grant us this permission. You can give permission in the security management software or settings.</string> <string name="call_log_alert">We need your call log information to determine your identity and speed up the loan, please grant us this permission. You can give permission in the security management software or settings.</string>
<string name="textview_me_policy">Privacy Policy</string> <string name="text_me_policy">Privacy Policy</string>
<string name="private_permission_title">tips</string> <string name="private_permission_title">tips</string>
<string name="private_permission_message">Dear Customer, so that we can provide the service quickly, accurately and qualified to you, Please agree app permission to:</string> <string name="private_permission_message">Dear Customer, so that we can provide the service quickly, accurately and qualified to you, Please agree app permission to:</string>
<string name="private_permission_keep">we will maintain and adhere to the customer\'s privacy policy</string> <string name="private_permission_keep">we will maintain and adhere to the customer\'s privacy policy</string>
...@@ -862,8 +877,8 @@ ...@@ -862,8 +877,8 @@
<string name="i_agree_this_policy">I agree with this policy</string> <string name="i_agree_this_policy">I agree with this policy</string>
<string name="read_policy_fully">*Please read this policy fully</string> <string name="read_policy_fully">*Please read this policy fully</string>
<string name="check_the_checkbox">Please agree the policy by checking the checkbox</string> <string name="check_the_checkbox">Please agree the policy by checking the checkbox</string>
<string name="textview_field_identity_info">Identity information</string> <string name="text_field_identity_info">Identity information</string>
<string name="textview_field_identity_info_2">Identity\ninformation</string> <string name="text_field_identity_info_2">Identity\ninformation</string>
<string name="double_click_exit_tip">Press again to exit the app</string> <string name="double_click_exit_tip">Press again to exit the app</string>
<string name="upload_your_ktp_photo">Upload Your KTP Photo</string> <string name="upload_your_ktp_photo">Upload Your KTP Photo</string>
<string name="take_ktp_photo_tips">The photo you upload needs to match your KTP.Your KTP must appear to be valid and clearly.</string> <string name="take_ktp_photo_tips">The photo you upload needs to match your KTP.Your KTP must appear to be valid and clearly.</string>
......
...@@ -12,21 +12,29 @@ ...@@ -12,21 +12,29 @@
<string name="edittext_graphical_code">图形验证码</string> <string name="edittext_graphical_code">图形验证码</string>
<string name="login_statement">点击按钮表示同意《注册服务协议和隐私政策》</string> <string name="login_statement">点击按钮表示同意《注册服务协议和隐私政策》</string>
<string name="text_welcome">欢迎,</string>
<string name="textview_loan">贷款</string> <string name="text_loan">贷款</string>
<string name="textview_certification">认证</string> <string name="text_certification">认证</string>
<string name="textview_me"></string> <string name="text_me"></string>
<string name="textview_me_my_loan">我的贷款</string> <string name="text_me_my_loan">我的贷款</string>
<string name="textview_me_security_setting">安全设置</string> <string name="text_me_security_setting">安全设置</string>
<string name="textview_me_help_center">帮助中心</string> <string name="text_me_help_center">帮助中心</string>
<string name="textview_me_customer_service_hotline">联系我们</string> <string name="text_me_customer_service_hotline">联系我们</string>
<string name="textview_online_QA">在线客服</string> <string name="text_online_QA">在线客服</string>
<string name="service_agreement">服务条款</string>
<string name="text_activity_center">活动中心</string>
<string name="text_notification">通知</string>
<string name="text_about">关于我们</string>
<string name="textview_loan_amount_statement">请选择贷款金额</string> <string name="text_apply">申请</string>
<string name="textview_loan_replayment_statement">请选择贷款期限</string> <string name="txt_upload_ID">上传您的ID照片</string>
<string name="text_loan_amount_statement">请选择贷款金额</string>
<string name="text_loan_replayment_statement">请选择贷款期限</string>
<string name="RP600k">¥ 600</string> <string name="RP600k">¥ 600</string>
<string name="RP1200K">¥ 1200</string> <string name="RP1200K">¥ 1200</string>
<string name="loan_7days">7天</string> <string name="loan_7days">7天</string>
...@@ -35,58 +43,63 @@ ...@@ -35,58 +43,63 @@
<string name="repayment_statement">还款额</string> <string name="repayment_statement">还款额</string>
<string name="total_repayment">¥ 1070</string> <string name="total_repayment">¥ 1070</string>
<string name="button_current_loan">申请贷款</string> <string name="button_current_loan">申请贷款</string>
<string name="textview_steps">只有4个步骤。最快20分钟内贷款。</string> <string name="text_steps">只有4个步骤。最快20分钟内贷款。</string>
<string name="textview_repayment_raiders">查看还款指南</string> <string name="text_repayment_raiders">查看还款指南</string>
<string name="text_relationship">关系</string>
<string name="textview_loan_amount">贷款金额</string> <string name="input_invalid">请输入完整信息</string>
<string name="textview_repayment_time">到期时间</string> <string name="text_loan_amount">贷款金额</string>
<string name="text_repayment_time">到期时间</string>
<string name="text_certify_account">下面的验证是可选的,通过验证可以增加在ACC中申请的成功率</string>
<string name="text_optional">可选</string>
<string name="textview_receiving_bank">收款银行名称</string> <string name="text_receiving_bank">收款银行名称</string>
<string name="editText_bank_number">收款银行账号</string> <string name="editText_bank_number">收款银行账号</string>
<string name="editText_confirm_bank_number">确认收款银行账号</string> <string name="editText_confirm_bank_number">确认收款银行账号</string>
<string name="editText_use_loan">贷款用途</string> <string name="editText_use_loan">贷款用途</string>
<string name="textview_title_personal_info">个人信息</string> <string name="text_title_personal_info">个人信息</string>
<string name="textview_field_personal_info">个人信息</string> <string name="text_field_personal_info">个人信息</string>
<string name="textview_field_personal_info_2">个人\n信息</string> <string name="text_field_personal_info_2">个人\n信息</string>
<string name="textview_field_professional_info">工作信息</string> <string name="text_field_professional_info">工作信息</string>
<string name="textview_field_professional_info_2">工作\n信息</string> <string name="text_field_professional_info_2">工作\n信息</string>
<string name="textview_field_Upload_photos">上传照片</string> <string name="text_field_Upload_photos">上传照片</string>
<string name="textview_authentication">认证</string> <string name="text_authentication">认证</string>
<string name="textview_progress_data_integrity">信息完成度: </string> <string name="text_progress_data_integrity">信息完成度: </string>
<string name="textview_progress_rating"> 0% </string> <string name="text_progress_rating"> 0% </string>
<string name="button_certification_submit">提交</string> <string name="button_certification_submit">提交</string>
<string name="textview_remain_days">05</string> <string name="text_remain_days">05</string>
<string name="textview_unit_days"></string> <string name="text_unit_days"></string>
<string name="textview_unit_tips_expird">您已超期</string> <string name="text_unit_tips_expird">您已超期</string>
<string name="textview_unit_tips">超期剩余时间</string> <string name="text_unit_tips">超期剩余时间</string>
<string name="textview_remaining_days">还款天数</string> <string name="text_remaining_days">还款天数</string>
<string name="textview_repayment_amount">¥ 642</string> <string name="text_repayment_amount">¥ 642</string>
<string name="textview_repayment_amount_text">还款额</string> <string name="text_repayment_amount_text">还款额</string>
<string name="textview_expiry_date">2017-1-30</string> <string name="text_expiry_date">2017-1-30</string>
<string name="textview_expiry_date_text">到期日</string> <string name="text_expiry_date_text">到期日</string>
<string name="buttom_want_to_Repay">我要还款</string> <string name="buttom_want_to_Repay">我要还款</string>
<string name="loan_duration">贷款期限</string>
<string name="textview_been_payment_text">已还款:</string> <string name="text_been_payment_text">已还款:</string>
<string name="textview_total_acount">¥ 642</string> <string name="text_total_acount">¥ 642</string>
<string name="textview_total_text">总额:</string> <string name="text_total_text">总额:</string>
<string name="textview_remain_text">剩余:</string> <string name="text_remain_text">剩余:</string>
<string name="textview_been_payment_account">¥ 42</string> <string name="text_been_payment_account">¥ 42</string>
<string name="textview_title_system_message">系统消息</string> <string name="text_title_system_message">系统消息</string>
<string name="textview_customer_service_hotline">联系我们</string> <string name="text_customer_service_hotline">联系我们</string>
<string name="textview_bank_select_statement">请选择还款银行</string> <string name="text_bank_select_statement">请选择还款银行</string>
<string name="button_bank_determine">选择</string> <string name="button_bank_determine">选择</string>
...@@ -96,63 +109,63 @@ ...@@ -96,63 +109,63 @@
<string name="edittext_personal_info_family_name_in_law">母亲的姓</string> <string name="edittext_personal_info_family_name_in_law">母亲的姓</string>
<string name="textview_personal_info_gender">性别</string> <string name="text_personal_info_gender">性别</string>
<string name="textview_personal_info_education">学历</string> <string name="text_personal_info_education">学历</string>
<string name="textview_personal_info_marital_status">婚姻状况</string> <string name="text_personal_info_marital_status">婚姻状况</string>
<string name="textview_personal_info_number_of_children">子女个数</string> <string name="text_personal_info_number_of_children">子女个数</string>
<string name="textview_personal_info_province_of_residence">省份</string> <string name="text_personal_info_province_of_residence">省份</string>
<string name="textview_personal_info_city_of_residence">城市</string> <string name="text_personal_info_city_of_residence">城市</string>
<string name="textview_personal_info_street_of_residence">街道</string> <string name="text_personal_info_street_of_residence">街道</string>
<string name="textview_personal_info_area_of_residence">村镇</string> <string name="text_personal_info_area_of_residence">村镇</string>
<string name="textview_personal_info_address">地址</string> <string name="text_personal_info_address">地址</string>
<string name="textview_personal_info_duration_of_residence">居住时间</string> <string name="text_personal_info_duration_of_residence">居住时间</string>
<string name="textview_personal_info_phone_number_verification">家庭电话</string> <string name="text_personal_info_phone_number_verification">家庭电话</string>
<string name="textview_personal_info_facebook">脸书</string> <string name="text_personal_info_facebook">脸书</string>
<string name="textview_personal_info_memverifikasi_info">验证在线购物信息(可选)</string> <string name="text_personal_info_memverifikasi_info">验证在线购物信息(可选)</string>
<string name="textview_job_info_title">职业信息</string> <string name="text_job_info_title">职业信息</string>
<string name="textview_job_info_job_type">职业类型</string> <string name="text_job_info_job_type">职业类型</string>
<string name="textview_job_info_monthly_income">月收入</string> <string name="text_job_info_monthly_income">月收入</string>
<string name="edittext_job_info_company_name">公司名称</string> <string name="edittext_job_info_company_name">公司名称</string>
<string name="textview_job_info_province_of_company_located">公司所在省份</string> <string name="text_job_info_province_of_company_located">公司所在省份</string>
<string name="textview_job_info_city_of_company_located">公司所在城市</string> <string name="text_job_info_city_of_company_located">公司所在城市</string>
<string name="textview_job_info_street_of_company_located">公司所在街道</string> <string name="text_job_info_street_of_company_located">公司所在街道</string>
<string name="textview_job_info_city_in_the_village">公司所在村镇</string> <string name="text_job_info_city_in_the_village">公司所在村镇</string>
<string name="edittext_job_info_address">地址</string> <string name="edittext_job_info_address">地址</string>
<string name="edittext_job_info_tel_of_company">公司电话</string> <string name="edittext_job_info_tel_of_company">公司电话</string>
<string name="textview_job_info_work_email">工作邮箱(可选)</string> <string name="text_job_info_work_email">工作邮箱(可选)</string>
<string name="textview_job_info_email_verification">邮箱验证码(可选)</string> <string name="text_job_info_email_verification">邮箱验证码(可选)</string>
<string name="textview_job_info_statement">完成可选项信息将加快审核速度。</string> <string name="text_job_info_statement">完成可选项信息将加快审核速度。</string>
<string name="textview_contacts_info_father_mother">父/母/其他近亲</string> <string name="text_contacts_info_father_mother">父/母/其他近亲</string>
<string name="edittext_contacts_info_name">名字</string> <string name="edittext_contacts_info_name">名字</string>
<string name="textview_field_contract_info">联系人信息</string> <string name="text_field_contract_info">联系人信息</string>
<string name="textview_field_contract_info_2">联系人\n信息</string> <string name="text_field_contract_info_2">联系人\n信息</string>
<string name="edittext_contacts_info_telephone">电话</string> <string name="edittext_contacts_info_telephone">电话</string>
<string name="textview_contacts_info_friend">兄弟/姐妹/朋友</string> <string name="text_contacts_info_friend">兄弟/姐妹/朋友</string>
<string name="textview_upload_photos_statement_ktp_front">身份证证件正面</string> <string name="text_upload_photos_statement_ktp_front">身份证证件正面</string>
<string name="textview_upload_photps_statement_work_card_photo">工牌照片</string> <string name="text_upload_photps_statement_work_card_photo">工牌照片</string>
<string name="textView_upload_photps_statement_work_card_photo_2">(如果没有,你可以拍摄穿工作服照)</string> <string name="textView_upload_photps_statement_work_card_photo_2">(如果没有,你可以拍摄穿工作服照)</string>
<string name="textview_loan_info_statement">贷款信息:</string> <string name="text_loan_info_statement">贷款信息:</string>
<string name="button_loan_info_cancel">取消</string> <string name="button_loan_info_cancel">取消</string>
<string name="textview_loan_info_audit_passed">审批通过</string> <string name="text_loan_info_audit_passed">审批通过</string>
<string name="textview_loan_info_loan_qualified">贷款资格</string> <string name="text_loan_info_loan_qualified">贷款资格</string>
<string name="textview_laon_info_audit_passed_statement">你的审核已提交,请保持电话开机。</string> <string name="text_laon_info_audit_passed_statement">你的审核已提交,请保持电话开机。</string>
<string name="textview_loan_info_loan_qualified_statement">你已审核通过,正在放款。</string> <string name="text_loan_info_loan_qualified_statement">你已审核通过,正在放款。</string>
<string name="textview_status">状态</string> <string name="text_status">状态</string>
<string name="button_logout">登出</string> <string name="button_logout">登出</string>
<string name="textview_loan_raiders">贷款指南</string> <string name="text_loan_raiders">贷款指南</string>
<string name="textview_repayment_raiders_2">还款指南</string> <string name="text_repayment_raiders_2">还款指南</string>
<string name="text_title_about">关于我们</string> <string name="text_title_about">关于我们</string>
...@@ -178,11 +191,11 @@ ...@@ -178,11 +191,11 @@
<string name="text_loanraiders_step5">等待放款,贷款将在5-10分钟后到账</string> <string name="text_loanraiders_step5">等待放款,贷款将在5-10分钟后到账</string>
<string name="textview_video_title">视频签约</string> <string name="text_video_title">视频签约</string>
<string name="textview_video_tips">完成视频签约,等待审核成功后即刻放款。</string> <string name="text_video_tips">完成视频签约,等待审核成功后即刻放款。</string>
<string name="textview_video_tips2">如果您的提交被拒绝,该视频将不会生效。</string> <string name="text_video_tips2">如果您的提交被拒绝,该视频将不会生效。</string>
<string name="textview_video_read_tips">请用光亮环境下录制并大声朗读\n如果没有阅读,提交将被拒绝:</string> <string name="text_video_read_tips">请用光亮环境下录制并大声朗读\n如果没有阅读,提交将被拒绝:</string>
<string name="textview_video_statement">*我同意下列条款《贷款担保协议》</string> <string name="text_video_statement">*我同意下列条款《贷款担保协议》</string>
<string name="button_video_start">开始</string> <string name="button_video_start">开始</string>
<string name="button_video_re_record">重录</string> <string name="button_video_re_record">重录</string>
<string name="button_video_Pause">暂停</string> <string name="button_video_Pause">暂停</string>
...@@ -261,7 +274,7 @@ ...@@ -261,7 +274,7 @@
<string name="text_shoot_work_card_front">工牌正面\n或\n穿工作服的照片</string> <string name="text_shoot_work_card_front">工牌正面\n或\n穿工作服的照片</string>
<string name="textview_me_my_repayment_log">我的还款</string> <string name="text_me_my_repayment_log">我的还款</string>
<string name="text_my_loan_not_loan">尚未贷款</string> <string name="text_my_loan_not_loan">尚未贷款</string>
...@@ -622,7 +635,7 @@ ...@@ -622,7 +635,7 @@
<string name="text_day_before_yesterday">两天前</string> <string name="text_day_before_yesterday">两天前</string>
<string name="textview_repayment_raiders_tips">您可以通过以下方式还款:</string> <string name="text_repayment_raiders_tips">您可以通过以下方式还款:</string>
<string name="textView_repayment_raiders_warns">这笔交易可以通过所有银行和Alfamart完成</string> <string name="textView_repayment_raiders_warns">这笔交易可以通过所有银行和Alfamart完成</string>
<string name="show_not_login_yet">未登录</string> <string name="show_not_login_yet">未登录</string>
<string name="show_no_message">没有消息</string> <string name="show_no_message">没有消息</string>
...@@ -649,7 +662,7 @@ ...@@ -649,7 +662,7 @@
<string name="goto_record_video">录制视频</string> <string name="goto_record_video">录制视频</string>
<string name="same_name">输入的联系人姓名相同</string> <string name="same_name">输入的联系人姓名相同</string>
<string name="same_number">输入的联络电话相同</string> <string name="same_number">输入的联络电话相同</string>
<string name="textview_me_my_invite">邀请好友</string> <string name="text_me_my_invite">邀请好友</string>
<string name="text_invite_award">成功邀请朋友贷款会得到奖励¥ 60</string> <string name="text_invite_award">成功邀请朋友贷款会得到奖励¥ 60</string>
<string name="text_invite_info_detail">活动时间结束:30-5-2017 \n活动结束后发放奖品。如果有任何问题,请联系whatsapp:08327463726</string> <string name="text_invite_info_detail">活动时间结束:30-5-2017 \n活动结束后发放奖品。如果有任何问题,请联系whatsapp:08327463726</string>
<string name="text_my_invite_code">邀请码:</string> <string name="text_my_invite_code">邀请码:</string>
...@@ -665,13 +678,13 @@ ...@@ -665,13 +678,13 @@
<string name="show_input_areacode">请输入区号</string> <string name="show_input_areacode">请输入区号</string>
<string name="loading_storing_img">获取照片中...</string> <string name="loading_storing_img">获取照片中...</string>
<string name="show_preparing">准备中...</string> <string name="show_preparing">准备中...</string>
<string name="textview_video_re_record">重新录制</string> <string name="text_video_re_record">重新录制</string>
<string name="textview_video_pause">暂停</string> <string name="text_video_pause">暂停</string>
<string name="textview_video_complete"><![CDATA[完成&\n预览]]></string> <string name="text_video_complete"><![CDATA[完成&\n预览]]></string>
<string name="text_id_custom_service">在线客服</string> <string name="text_id_custom_service">在线客服</string>
<string name="loan_result_title_approved">贷款放款成功</string> <string name="loan_result_title_approved">贷款放款成功</string>
<string name="loan_result_tip_approved">请检查您的银行帐户</string> <string name="loan_result_tip_approved">请检查您的银行帐户</string>
<string name="loan_result_botton">确定</string> <string name="text_sure">确定</string>
<string name="loan_result_title_rejected">对不起,您的申请未通过!</string> <string name="loan_result_title_rejected">对不起,您的申请未通过!</string>
<string name="loan_close_resion">1.您的信息不正确\n2.图像不清晰。</string> <string name="loan_close_resion">1.您的信息不正确\n2.图像不清晰。</string>
<string name="loan_result_tip_rejected">您的贷款已被拒绝,您可以再试一次</string> <string name="loan_result_tip_rejected">您的贷款已被拒绝,您可以再试一次</string>
...@@ -715,21 +728,22 @@ ...@@ -715,21 +728,22 @@
<string name="button_to_take_video">立即上传您的视频</string> <string name="button_to_take_video">立即上传您的视频</string>
<string name="show_input_error">验证码错误,请检查后重试。</string> <string name="show_input_error">验证码错误,请检查后重试。</string>
<string name="textview_username">请登录</string> <string name="text_username">请登录</string>
<string name="textview_phone">点击登录</string> <string name="text_phone">点击登录</string>
<string name="text_special_doku">BLUEPAY</string> <string name="text_special_doku">BLUEPAY</string>
<string name="text_wrong_ktp_tips">提示:请输入16位数字。正确的身份证号</string> <string name="text_wrong_ktp_tips">提示:请输入16位数字。正确的身份证号</string>
<string name="textview_register_login">注册/登录</string> <string name="text_register_login">注册/登录</string>
<string name="cancel_loan_app_alert_dialog">你确定要取消贷款吗?</string> <string name="cancel_loan_app_alert_dialog">你确定要取消贷款吗?</string>
<string name="dialog_ensure_logout">你确定要退出吗?</string> <string name="dialog_ensure_logout">你确定要退出吗?</string>
<string name="payment_alfmart">ALFMART</string> <string name="payment_alfmart">ALFMART</string>
<string name="payment_bca">BCA</string> <string name="payment_bca">BCA</string>
<string name="payment_mandiri">SELF</string> <string name="payment_mandiri">SELF</string>
<string name="payment_bni">BNI</string> <string name="payment_bni">BNI</string>
<string name="payment_others">其他银行</string> <string name="payment_others">其他银行</string>
<string name="textview_loaning_tips">*帐户名称必须与贷款人姓名相同</string> <string name="text_loaning_tips">*帐户名称必须与贷款人姓名相同</string>
<string name="dialog_closed_revisi">请修改申请信息</string> <string name="dialog_closed_revisi">请修改申请信息</string>
...@@ -760,12 +774,12 @@ ...@@ -760,12 +774,12 @@
<string name="button_copy_code">复制邀请码</string> <string name="button_copy_code">复制邀请码</string>
<string name="textview_coupon_choose">选择可用的优惠券</string> <string name="text_coupon_choose">选择可用的优惠券</string>
<string name="title_activity_detail">活动详情</string> <string name="title_activity_detail">活动详情</string>
<string name="title_choose_coupon">选择可用的优惠券</string> <string name="title_choose_coupon">选择可用的优惠券</string>
<string name="button_video_play">播放</string> <string name="button_video_play">播放</string>
<string name="text_invite_code_login_tips">*仅适用于首次登录</string> <string name="text_invite_code_login_tips">*仅适用于首次登录</string>
<string name="textview_loan_period">贷款期限</string> <string name="text_loan_period">贷款期限</string>
<string name="title_loan_info">贷款详情</string> <string name="title_loan_info">贷款详情</string>
<string name="show_read_agreement">请阅读并接受贷款协议以进行下一步</string> <string name="show_read_agreement">请阅读并接受贷款协议以进行下一步</string>
<string name="btn_read_agreemment">协议</string> <string name="btn_read_agreemment">协议</string>
...@@ -784,7 +798,7 @@ ...@@ -784,7 +798,7 @@
<string name="toast_input_password_longger_than_five">请输入5位以上密码</string> <string name="toast_input_password_longger_than_five">请输入5位以上密码</string>
<string name="title_area_selector">选择区域</string> <string name="title_area_selector">选择区域</string>
<string name="show_has_copyed_to_clip_board">邀请码已复制到剪贴板</string> <string name="show_has_copyed_to_clip_board">邀请码已复制到剪贴板</string>
<string name="textview_personal_info_region">区域信息</string> <string name="text_personal_info_region">区域信息</string>
<string name="text_get_more_message">--获取历史消息--</string> <string name="text_get_more_message">--获取历史消息--</string>
<string name="text_choose_pic">选图</string> <string name="text_choose_pic">选图</string>
<string name="text_take_photo">拍照</string> <string name="text_take_photo">拍照</string>
...@@ -795,10 +809,10 @@ ...@@ -795,10 +809,10 @@
<string name="text_coupon_usable_period">有效期:</string> <string name="text_coupon_usable_period">有效期:</string>
<string name="btn_use_coupon">使用优惠券</string> <string name="btn_use_coupon">使用优惠券</string>
<string name="to"></string> <string name="to"></string>
<string name="textview_refrash">==刷新==</string> <string name="text_refrash">==刷新==</string>
<string name="show_download_message_failed">下载消息失败</string> <string name="show_download_message_failed">下载消息失败</string>
<string name="show_sms_send_too_much">一个小时内发送的短信太多了,请稍后重试</string> <string name="show_sms_send_too_much">一个小时内发送的短信太多了,请稍后重试</string>
<string name="textview_coupon_limit">不能和其他优惠券同时使用</string> <string name="text_coupon_limit">不能和其他优惠券同时使用</string>
<string name="enum_education_DIPLOMA_I">本科以上</string> <string name="enum_education_DIPLOMA_I">本科以上</string>
...@@ -818,7 +832,7 @@ ...@@ -818,7 +832,7 @@
<string name="permission_denied">permission denied</string> <string name="permission_denied">permission denied</string>
<string name="detect_live_face_fail">live detect fail</string> <string name="detect_live_face_fail">live detect fail</string>
<string name="faceid_auth_failed" >system error, can not loan now</string> <string name="faceid_auth_failed">system error, can not loan now</string>
<string name="faceid_detect_fail">detecting face failed, try latter</string> <string name="faceid_detect_fail">detecting face failed, try latter</string>
<string name="faceid_detect_success">face detects success</string> <string name="faceid_detect_success">face detects success</string>
// yitu // yitu
...@@ -836,8 +850,8 @@ ...@@ -836,8 +850,8 @@
<string name="need_permission">需要%s权限才能使程序正常运行。 请到权限中心设置,以获得此权限。</string> <string name="need_permission">需要%s权限才能使程序正常运行。 请到权限中心设置,以获得此权限。</string>
<string name="error_occured">程序出错</string> <string name="error_occured">程序出错</string>
<string name="call_log_alert">我们需要您的通话记录信息来确定您的身份并加速放款,请授予我们这个权限。您可以在安全管理软件或设置中赋予权限。</string> <string name="call_log_alert">我们需要您的通话记录信息来确定您的身份并加速放款,请授予我们这个权限。您可以在安全管理软件或设置中赋予权限。</string>
<string name="textview_me_policy">隐私政策</string> <string name="text_me_policy">隐私政策</string>
<string name="private_permission_title">@string/textview_me_policy</string> <string name="private_permission_title">@string/text_me_policy</string>
<string name="private_permission_message">尊敬的客户,以便我们能够为您提供快速,准确和合格的服务,请同意应用程序的权限:</string> <string name="private_permission_message">尊敬的客户,以便我们能够为您提供快速,准确和合格的服务,请同意应用程序的权限:</string>
<string name="private_permission_keep">我们将坚持保护客户的隐私政策</string> <string name="private_permission_keep">我们将坚持保护客户的隐私政策</string>
<string name="blue_pay_bank_code">013</string> <string name="blue_pay_bank_code">013</string>
...@@ -845,8 +859,8 @@ ...@@ -845,8 +859,8 @@
<string name="i_agree_this_policy">我同意这项政策</string> <string name="i_agree_this_policy">我同意这项政策</string>
<string name="read_policy_fully">*请完整阅读本政策</string> <string name="read_policy_fully">*请完整阅读本政策</string>
<string name="check_the_checkbox">请勾选复选框以同意政策</string> <string name="check_the_checkbox">请勾选复选框以同意政策</string>
<string name="textview_field_identity_info">身份信息</string> <string name="text_field_identity_info">身份信息</string>
<string name="textview_field_identity_info_2">身份\n信息</string> <string name="text_field_identity_info_2">身份\n信息</string>
<string name="double_click_exit_tip">再次点击退出该应用程序</string> <string name="double_click_exit_tip">再次点击退出该应用程序</string>
<string name="upload_your_ktp_photo">上传您的KTP照片</string> <string name="upload_your_ktp_photo">上传您的KTP照片</string>
<string name="take_ktp_photo_tips">您上传的照片需要与您的KTP相匹配。您的KTP必须显得有效且清晰。</string> <string name="take_ktp_photo_tips">您上传的照片需要与您的KTP相匹配。您的KTP必须显得有效且清晰。</string>
......
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
<color name="colorAccent">#FF4081</color> <color name="colorAccent">#FF4081</color>
<!--背景灰--> <!--背景灰-->
<color name="white_alpha50">#80FFFFFF</color>
<color name="white_alpha30">#4DFFFFFF</color>
<color name="white_alpha10">#1AFFFFFF</color>
<color name="translateColor">#00000000</color> <color name="translateColor">#00000000</color>
<color name="gray_bg">#F7F7F7</color> <color name="gray_bg">#F7F7F7</color>
......
...@@ -4,6 +4,10 @@ ...@@ -4,6 +4,10 @@
<string name="text_app_error">Program Exception</string> <string name="text_app_error">Program Exception</string>
<string name="null_response">NO Data</string> <string name="null_response">NO Data</string>
<string name="text_welcome">Selamt Datang,</string>
<string name="edittext_phone_number_hint">Silahkan masukkan no ponsel anda</string> <string name="edittext_phone_number_hint">Silahkan masukkan no ponsel anda</string>
<string name="edittext_SMS_code_hint">Silahkan masukkan kode sms</string> <string name="edittext_SMS_code_hint">Silahkan masukkan kode sms</string>
<string name="button_obtain_code">Dapatkan Kode</string> <string name="button_obtain_code">Dapatkan Kode</string>
...@@ -12,21 +16,37 @@ ...@@ -12,21 +16,37 @@
<string name="login_statement">Klik tombol setuju \"Perjanjian Layanan Registrasi dan Privasi\"</string> <string name="login_statement">Klik tombol setuju \"Perjanjian Layanan Registrasi dan Privasi\"</string>
<string name="textview_loan">Pinjaman</string> <string name="text_loan">Pinjaman</string>
<string name="textview_certification">Sertifikasi</string> <string name="text_certification">Sertifikasi</string>
<string name="textview_certification2">Bukti</string> <string name="text_certification2">Bukti</string>
<string name="textview_me">Saya</string> <string name="text_me">Saya</string>
<string name="loan_duration">Durasi pinjaman</string>
<string name="text_me_my_loan">Pinjaman saya</string>
<string name="text_me_security_setting">Pengaturan keamanan</string>
<string name="text_me_customer_service_hotline">Hubungi kami</string>
<string name="text_activity_center">Pusat operasi</string>
<string name="service_agreement">Ketentuan layana</string>
<string name="text_notification">Pemberitahuan</string>
<string name="text_me_help_center">Pusat bantuan</string>
<string name="text_about">Tentang kami</string>
<string name="text_online_QA">Layanan online</string>
<string name="textview_me_my_loan">Pinjaman Saya</string> <string name="text_apply">Apply</string>
<string name="textview_me_security_setting">Pengaturan Keamanan</string>
<string name="textview_me_help_center">Pusat Bantuan</string>
<string name="textview_me_customer_service_hotline">Hubungi Kami</string>
<string name="textview_online_QA">Layanan Online</string>
<string name="txt_upload_ID">Unggah ID foto Anda</string>
<string name="textview_loan_amount_statement">Silahkan pilih jumlah pinjaman</string> <string name="text_relationship">Hubungan</string>
<string name="textview_loan_replayment_statement">Silakan pilih jangka waktu pinjaman</string> <string name="input_invalid">Harap masukkan informasi lengkap</string>
<string name="text_certify_account">Verfikasi di bawah ini merupakan opsional, melalui verifikasi mampu meningkatkan kemungkinan permohonan di ACC</string>
<string name="text_optional">Opsional</string>
<string name="text_loan_amount_statement">Silahkan pilih jumlah pinjaman</string>
<string name="text_loan_replayment_statement">Silakan pilih jangka waktu pinjaman</string>
<string name="RP600k">Rp. 600.000</string> <string name="RP600k">Rp. 600.000</string>
<string name="RP1200K">Rp. 1.200.000</string> <string name="RP1200K">Rp. 1.200.000</string>
<string name="loan_7days">7 Hari</string> <string name="loan_7days">7 Hari</string>
...@@ -35,121 +55,121 @@ ...@@ -35,121 +55,121 @@
<string name="repayment_statement">Jumlah Pelunasan</string> <string name="repayment_statement">Jumlah Pelunasan</string>
<string name="total_repayment">Rp. 1.070.000</string> <string name="total_repayment">Rp. 1.070.000</string>
<string name="button_current_loan">Ajukan pinjaman</string> <string name="button_current_loan">Ajukan pinjaman</string>
<string name="textview_steps">Hanya dengan 4 langkah. Pinjaman paling cepat dalam 20 menit. </string> <string name="text_steps">Hanya dengan 4 langkah. Pinjaman paling cepat dalam 20 menit. </string>
<string name="textview_repayment_raiders">Lihat Cara Pengembalian Pinjaman</string> <string name="text_repayment_raiders">Lihat Cara Pengembalian Pinjaman >></string>
<string name="textview_loan_amount">Jumlah Pinjaman</string> <string name="text_loan_amount">Jumlah Pinjaman</string>
<string name="textview_repayment_time">Jatuh Tempo</string> <string name="text_repayment_time">Jatuh Tempo</string>
<string name="textview_receiving_bank">Nama Bank Penerima</string> <string name="text_receiving_bank">Nama Bank Penerima</string>
<string name="editText_bank_number">Nomor Rekening Penerima</string> <string name="editText_bank_number">Nomor Rekening Penerima</string>
<string name="editText_confirm_bank_number">Konfirmasikan Nomor Rekening Penerima</string> <string name="editText_confirm_bank_number">Konfirmasikan Nomor Rekening Penerima</string>
<string name="editText_use_loan">Tujuan pinjaman</string> <string name="editText_use_loan">Tujuan pinjaman</string>
<string name="textview_title_personal_info">Informasi Pribadi</string> <string name="text_title_personal_info">Informasi Pribadi</string>
<string name="textview_field_personal_info">Informasi Pribadi</string> <string name="text_field_personal_info">Informasi Pribadi</string>
<string name="textview_field_personal_info_2">Informasi \n pekerjaan</string> <string name="text_field_personal_info_2">Informasi \n pekerjaan</string>
<string name="textview_field_professional_info">Informasi pekerjaan</string> <string name="text_field_professional_info">Informasi pekerjaan</string>
<string name="textview_field_professional_info_2">Informasi \n Profesi</string> <string name="text_field_professional_info_2">Informasi \n Profesi</string>
<string name="textview_field_Upload_photos">Upload Foto</string> <string name="text_field_Upload_photos">Upload Foto</string>
<string name="textview_authentication">Otentikasi</string> <string name="text_authentication">Otentikasi</string>
<string name="textview_progress_data_integrity">Integritas Data: </string> <string name="text_progress_data_integrity">Integritas Data: </string>
<string name="textview_progress_rating"> 0% </string> <string name="text_progress_rating"> 0% </string>
<string name="button_certification_submit">Kirim</string> <string name="button_certification_submit">Kirim</string>
<string name="button_certification_submit2">Kirim itu</string> <string name="button_certification_submit2">Kirim itu</string>
<string name="textview_remain_days">05</string> <string name="text_remain_days">05</string>
<string name="textview_unit_days">Hari</string> <string name="text_unit_days">Hari</string>
<string name="textview_unit_tips_expird">Anda telah terlambat</string> <string name="text_unit_tips_expird">Anda telah terlambat</string>
<string name="textview_unit_tips">Dari hari jatuh tempo</string> <string name="text_unit_tips">Dari hari jatuh tempo</string>
<string name="textview_remaining_days">Sisa Tenggat Waktu</string> <string name="text_remaining_days">Sisa Tenggat Waktu</string>
<string name="textview_repayment_amount">Rp. 642.000</string> <string name="text_repayment_amount">Rp. 642.000</string>
<string name="textview_repayment_amount_text">Jumlah Pelunasan</string> <string name="text_repayment_amount_text">Jumlah Pelunasan</string>
<string name="textview_expiry_date">2017-1-30</string> <string name="text_expiry_date">2017-1-30</string>
<string name="textview_expiry_date_text">Tanggal Jatuh Tempo</string> <string name="text_expiry_date_text">Tanggal Jatuh Tempo</string>
<string name="buttom_want_to_Repay">Saya ingin mengembalikan</string> <string name="buttom_want_to_Repay">Saya ingin mengembalikan</string>
<string name="textview_been_payment_text">Telah dikembalikan: </string> <string name="text_been_payment_text">Telah dikembalikan: </string>
<string name="textview_total_acount">Rp. 642.000</string> <string name="text_total_acount">Rp. 642.000</string>
<string name="textview_total_text">Total: </string> <string name="text_total_text">Total: </string>
<string name="textview_remain_text">Sisa: </string> <string name="text_remain_text">Sisa: </string>
<string name="textview_been_payment_account">Rp. 42.000</string> <string name="text_been_payment_account">Rp. 42.000</string>
<string name="textview_title_system_message">Pesan Sistem</string> <string name="text_title_system_message">Pesan Sistem</string>
<string name="textview_customer_service_hotline">Hubungi Kami</string> <string name="text_customer_service_hotline">Hubungi Kami</string>
<string name="textview_bank_select_statement">Silahkan pilih bank untuk mengembalikan pinjaman</string> <string name="text_bank_select_statement">Silahkan pilih bank untuk mengembalikan pinjaman</string>
<string name="button_bank_determine">Pilih</string> <string name="button_bank_determine">Pilih</string>
<string name="edittext_personal_info_full_name">Nama Lengkap</string> <string name="edittext_personal_info_full_name">Nama Lengkap</string>
<string name="edittext_personal_info_ktp_no">No KTP</string> <string name="edittext_personal_info_ktp_no">No KTP</string>
<string name="edittext_personal_info_family_name_in_law">Nama Ibu Kandung</string> <string name="edittext_personal_info_family_name_in_law">Nama Ibu Kandung</string>
<string name="textview_personal_info_gender">Jenis Kelamin</string> <string name="text_personal_info_gender">Jenis Kelamin</string>
<string name="textview_personal_info_education">Edukasi</string> <string name="text_personal_info_education">Edukasi</string>
<string name="textview_personal_info_marital_status">Status Perkawinan</string> <string name="text_personal_info_marital_status">Status Perkawinan</string>
<string name="textview_personal_info_number_of_children">Jumlah Anak</string> <string name="text_personal_info_number_of_children">Jumlah Anak</string>
<string name="textview_personal_info_province_of_residence">Provinsi Hunian</string> <string name="text_personal_info_province_of_residence">Provinsi Hunian</string>
<string name="textview_personal_info_city_of_residence">Kota Hunian</string> <string name="text_personal_info_city_of_residence">Kota Hunian</string>
<string name="textview_personal_info_street_of_residence">Kecamatan Hunian</string> <string name="text_personal_info_street_of_residence">Kecamatan Hunian</string>
<string name="textview_personal_info_area_of_residence">Kelurahan Hunian</string> <string name="text_personal_info_area_of_residence">Kelurahan Hunian</string>
<string name="textview_personal_info_address">Alamat</string> <string name="text_personal_info_address">Alamat</string>
<string name="textview_personal_info_duration_of_residence">Durasi Hunian</string> <string name="text_personal_info_duration_of_residence">Durasi Hunian</string>
<string name="textview_personal_info_phone_number_verification">Verifikasi no ponsel</string> <string name="text_personal_info_phone_number_verification">Verifikasi no ponsel</string>
<string name="textview_personal_info_facebook">Facebook</string> <string name="text_personal_info_facebook">Facebook</string>
<string name="textview_personal_info_memverifikasi_info">Verifikasi info belanja online(optional)</string> <string name="text_personal_info_memverifikasi_info">Verifikasi info belanja online(optional)</string>
<string name="textview_job_info_title">Informasi Pekerjaan</string> <string name="text_job_info_title">Informasi Pekerjaan</string>
<string name="textview_job_info_job_type">Tipe Pekerjaan</string> <string name="text_job_info_job_type">Tipe Pekerjaan</string>
<string name="textview_job_info_monthly_income">Pendapatan Bulanan</string> <string name="text_job_info_monthly_income">Pendapatan Bulanan</string>
<string name="edittext_job_info_company_name">Nama Perusahaan</string> <string name="edittext_job_info_company_name">Nama Perusahaan</string>
<string name="textview_job_info_province_of_company_located">Provinsi Perusahaan</string> <string name="text_job_info_province_of_company_located">Provinsi Perusahaan</string>
<string name="textview_job_info_city_of_company_located">Kota Perusahaan</string> <string name="text_job_info_city_of_company_located">Kota Perusahaan</string>
<string name="textview_job_info_street_of_company_located">Kecamatan Perusahaan</string> <string name="text_job_info_street_of_company_located">Kecamatan Perusahaan</string>
<string name="textview_job_info_city_in_the_village">Kelurahan Perusahaan</string> <string name="text_job_info_city_in_the_village">Kelurahan Perusahaan</string>
<string name="edittext_job_info_address">Alamat</string> <string name="edittext_job_info_address">Alamat</string>
<string name="edittext_job_info_tel_of_company">No Tel Perusahaan</string> <string name="edittext_job_info_tel_of_company">No Tel Perusahaan</string>
<string name="textview_job_info_work_email">Email Kerja (Opsional)</string> <string name="text_job_info_work_email">Email Kerja (Opsional)</string>
<string name="textview_job_info_email_verification">Kode Verifikasi Email (Opsional)</string> <string name="text_job_info_email_verification">Kode Verifikasi Email (Opsional)</string>
<string name="textview_job_info_statement">Mengisi informasi opsional akan mempercepat proses review kami dan memberikan anda akses pada penawaran</string> <string name="text_job_info_statement">Mengisi informasi opsional akan mempercepat proses review kami dan memberikan anda akses pada penawaran</string>
<string name="textview_contacts_info_father_mother">Ayah/ibu/kerabat dekat lainnya</string> <string name="text_contacts_info_father_mother">Ayah/ibu/kerabat dekat lainnya</string>
<string name="edittext_contacts_info_name">Nama</string> <string name="edittext_contacts_info_name">Nama</string>
<string name="textview_field_contract_info"> Informasi Kontak</string> <string name="text_field_contract_info"> Informasi Kontak</string>
<string name="textview_field_contract_info_2"> Informasi \n Kontak</string> <string name="text_field_contract_info_2"> Informasi \n Kontak</string>
<string name="edittext_contacts_info_telephone">Telepon</string> <string name="edittext_contacts_info_telephone">Telepon</string>
<string name="textview_contacts_info_friend">Saudara / Saudari / Teman</string> <string name="text_contacts_info_friend">Saudara / Saudari / Teman</string>
<string name="textview_upload_photos_statement_ktp_front">Halaman Depan KTP</string> <string name="text_upload_photos_statement_ktp_front">Halaman Depan KTP</string>
<string name="textview_upload_photps_statement_work_card_photo">Foto Kartu Pekerja</string> <string name="text_upload_photps_statement_work_card_photo">Foto Kartu Pekerja</string>
<string name="textView_upload_photps_statement_work_card_photo_2">(Jika tidak ada anda dapat foto memakai seragam kerja)</string> <string name="textView_upload_photps_statement_work_card_photo_2">(Jika tidak ada anda dapat foto memakai seragam kerja)</string>
<string name="textview_loan_info_statement">Informasi Pinjaman:</string> <string name="text_loan_info_statement">Informasi Pinjaman:</string>
<string name="button_loan_info_cancel">Batal</string> <string name="button_loan_info_cancel">Batal</string>
<string name="textview_loan_info_audit_passed">Review Lulus</string> <string name="text_loan_info_audit_passed">Review Lulus</string>
<string name="textview_loan_info_loan_qualified">Pinjaman Memenuhi Syarat</string> <string name="text_loan_info_loan_qualified">Pinjaman Memenuhi Syarat</string>
<string name="textview_laon_info_audit_passed_statement">Percobaan pertama anda telah berhasil, mohon jaga ponsel anda agar tetap nyala</string> <string name="text_laon_info_audit_passed_statement">Percobaan pertama anda telah berhasil, mohon jaga ponsel anda agar tetap nyala</string>
<string name="textview_loan_info_loan_qualified_statement">Review anda telah lulus, anda sedang mengajukan pinjaman</string> <string name="text_loan_info_loan_qualified_statement">Review anda telah lulus, anda sedang mengajukan pinjaman</string>
<string name="textview_status">Status</string> <string name="text_status">Status</string>
<string name="button_logout">Log out</string> <string name="button_logout">Log out</string>
<string name="textview_loan_raiders">Cara Meminjam</string> <string name="text_loan_raiders">Cara Meminjam</string>
<string name="textview_repayment_raiders_2">Cara Mengembalikan Pinjaman</string> <string name="text_repayment_raiders_2">Cara Mengembalikan Pinjaman</string>
<string name="text_title_about">Tentang Kami</string> <string name="text_title_about">Tentang Kami</string>
...@@ -175,11 +195,11 @@ ...@@ -175,11 +195,11 @@
<string name="text_loanraiders_step5">Tunggu pinjaman, pinjaman akan masuk ke akun anda dalam 5-10 menit</string> <string name="text_loanraiders_step5">Tunggu pinjaman, pinjaman akan masuk ke akun anda dalam 5-10 menit</string>
<string name="textview_video_title">Kontrak Video</string> <string name="text_video_title">Kontrak Video</string>
<string name="textview_video_tips">Mohon selesaikan kontrak video dan proses audit, pinjaman akan segera tiba</string> <string name="text_video_tips">Mohon selesaikan kontrak video dan proses audit, pinjaman akan segera tiba</string>
<string name="textview_video_tips2">Jika pengajuan anda ditolak, berarti video anda tidak berlaku</string> <string name="text_video_tips2">Jika pengajuan anda ditolak, berarti video anda tidak berlaku</string>
<string name="textview_video_read_tips">silahkan merekam dengan cahaya yang bagus dan baca dengan keras\njika tidak baca pengajuan akan di tolak:</string> <string name="text_video_read_tips">silahkan merekam dengan cahaya yang bagus dan baca dengan keras\njika tidak baca pengajuan akan di tolak:</string>
<string name="textview_video_statement">*Saya setuju dengan kesepakatan ini 《Perjanjian Jaminan Pinjaman》</string> <string name="text_video_statement">*Saya setuju dengan kesepakatan ini 《Perjanjian Jaminan Pinjaman》</string>
<string name="button_video_start">Mulai</string> <string name="button_video_start">Mulai</string>
<string name="button_video_re_record">Rekam Ulang</string> <string name="button_video_re_record">Rekam Ulang</string>
<string name="button_video_Pause">Pause</string> <string name="button_video_Pause">Pause</string>
...@@ -251,7 +271,7 @@ ...@@ -251,7 +271,7 @@
<string name="text_shoot_work_card_front">Foto dengan seragam kerja\n atau\n bersama tanda pengenal pekerja</string> <string name="text_shoot_work_card_front">Foto dengan seragam kerja\n atau\n bersama tanda pengenal pekerja</string>
<string name="textview_me_my_repayment_log">Pengembalian Pinjaman Saya</string> <string name="text_me_my_repayment_log">Pengembalian Pinjaman Saya</string>
<string name="text_my_loan_not_loan">Anda belum mempunyai pinjaman, coba sekarang</string> <string name="text_my_loan_not_loan">Anda belum mempunyai pinjaman, coba sekarang</string>
...@@ -613,7 +633,7 @@ ...@@ -613,7 +633,7 @@
<string name="text_day_before_yesterday">2 hari lalu</string> <string name="text_day_before_yesterday">2 hari lalu</string>
<string name="textview_repayment_raiders_tips">Anda dapat mengembalikan pinjaman dengan cara berikut:</string> <string name="text_repayment_raiders_tips">Anda dapat mengembalikan pinjaman dengan cara berikut:</string>
<string name="textView_repayment_raiders_warns">Transaksi ini dapat dilakukan melalui seluruh bank dan Alfamart</string> <string name="textView_repayment_raiders_warns">Transaksi ini dapat dilakukan melalui seluruh bank dan Alfamart</string>
<string name="show_not_login_yet">Belum Login</string> <string name="show_not_login_yet">Belum Login</string>
<string name="show_no_message">Tidak ada pesan</string> <string name="show_no_message">Tidak ada pesan</string>
...@@ -641,7 +661,7 @@ ...@@ -641,7 +661,7 @@
<string name="goto_record_video">Reka, video</string> <string name="goto_record_video">Reka, video</string>
<string name="same_name">Masukkan nama kontak yang sama</string> <string name="same_name">Masukkan nama kontak yang sama</string>
<string name="same_number">Masukkan nomor kontak yang sama</string> <string name="same_number">Masukkan nomor kontak yang sama</string>
<string name="textview_me_my_invite">Undang teman</string> <string name="text_me_my_invite">Undang teman</string>
<string name="text_invite_award">Berhasil mengundang teman untuk meminjam akan mendapatkan hadiah Rp. 60.000</string> <string name="text_invite_award">Berhasil mengundang teman untuk meminjam akan mendapatkan hadiah Rp. 60.000</string>
<string name="text_invite_info_detail">Waktu aktivitas berakhir:30-5-2017 \nHadiah akan dibagikan setelah aktivitas berakhir. Jika ada masalah, silahkan hubungi whatsapp: 08327463726</string> <string name="text_invite_info_detail">Waktu aktivitas berakhir:30-5-2017 \nHadiah akan dibagikan setelah aktivitas berakhir. Jika ada masalah, silahkan hubungi whatsapp: 08327463726</string>
<string name="text_my_invite_code">Kode invitasi:</string> <string name="text_my_invite_code">Kode invitasi:</string>
...@@ -657,13 +677,13 @@ ...@@ -657,13 +677,13 @@
<string name="show_input_areacode">Silahkan masukkan kode area</string> <string name="show_input_areacode">Silahkan masukkan kode area</string>
<string name="loading_storing_img">loading gambar</string> <string name="loading_storing_img">loading gambar</string>
<string name="show_preparing">mempersiapkan</string> <string name="show_preparing">mempersiapkan</string>
<string name="textview_video_re_record">Rekam ulang</string> <string name="text_video_re_record">Rekam ulang</string>
<string name="textview_video_pause">Pause</string> <string name="text_video_pause">Pause</string>
<string name="textview_video_complete"><![CDATA[complete&\npreview]]></string> <string name="text_video_complete"><![CDATA[complete&\npreview]]></string>
<string name="text_id_custom_service">Servis Online</string> <string name="text_id_custom_service">Servis Online</string>
<string name="loan_result_title_approved">Pengeluaran pinjaman berhasil</string> <string name="loan_result_title_approved">Pengeluaran pinjaman berhasil</string>
<string name="loan_result_tip_approved">Silahkan periksa rekening bank anda.\nSilahkan tepat waktu dalam pelunasan, rekening pelunasan bandingkan dengan aplikasi, jangan percaya rekening pelunasan yang diperoleh dari luar aplikasi.</string> <string name="loan_result_tip_approved">Silahkan periksa rekening bank anda.\nSilahkan tepat waktu dalam pelunasan, rekening pelunasan bandingkan dengan aplikasi, jangan percaya rekening pelunasan yang diperoleh dari luar aplikasi.</string>
<string name="loan_result_botton">OKE</string> <string name="text_sure">OKE</string>
<string name="loan_result_title_rejected">Maaf, pengajuan anda tidak disetujui!</string> <string name="loan_result_title_rejected">Maaf, pengajuan anda tidak disetujui!</string>
<string name="loan_close_resion">1.Informasi Anda salah\n2.Gambar tidak jelas.</string> <string name="loan_close_resion">1.Informasi Anda salah\n2.Gambar tidak jelas.</string>
<string name="loan_result_tip_rejected">Pinjaman Anda telah ditolak, Anda bisa mencoba lagi</string> <string name="loan_result_tip_rejected">Pinjaman Anda telah ditolak, Anda bisa mencoba lagi</string>
...@@ -707,11 +727,11 @@ ...@@ -707,11 +727,11 @@
<string name="button_to_take_video">Upload Video Anda Sekarang</string> <string name="button_to_take_video">Upload Video Anda Sekarang</string>
<string name="show_input_error">Kode salah, silahkan periksa dan coba lagi</string> <string name="show_input_error">Kode salah, silahkan periksa dan coba lagi</string>
<string name="textview_username">Silahkan login</string> <string name="text_username">Silahkan login</string>
<string name="textview_phone">Klik untuk login</string> <string name="text_phone">Klik untuk login</string>
<string name="text_special_doku">BLUEPAY</string> <string name="text_special_doku">BLUEPAY</string>
<string name="text_wrong_ktp_tips">Petunjuk: Silahkan masukkan 16 digit no. KTP yang benar</string> <string name="text_wrong_ktp_tips">Petunjuk: Silahkan masukkan 16 digit no. KTP yang benar</string>
<string name="textview_register_login">Daftar / Login</string> <string name="text_register_login">Daftar / Login</string>
<string name="cancel_loan_app_alert_dialog">Apakah anda yakin ingin membatalkan pinjaman?</string> <string name="cancel_loan_app_alert_dialog">Apakah anda yakin ingin membatalkan pinjaman?</string>
<string name="dialog_ensure_logout">Anda yakin ingin keluar?</string> <string name="dialog_ensure_logout">Anda yakin ingin keluar?</string>
...@@ -721,7 +741,7 @@ ...@@ -721,7 +741,7 @@
<string name="payment_mandiri">MANDIRI</string> <string name="payment_mandiri">MANDIRI</string>
<string name="payment_bni">BNI</string> <string name="payment_bni">BNI</string>
<string name="payment_others">BANK LAINNYA</string> <string name="payment_others">BANK LAINNYA</string>
<string name="textview_loaning_tips">*Nama yang tertera pada rekening harus sama dengan nama peminjam</string> <string name="text_loaning_tips">*Nama yang tertera pada rekening harus sama dengan nama peminjam</string>
<string name="dialog_closed_revisi">REVISI</string> <string name="dialog_closed_revisi">REVISI</string>
...@@ -752,12 +772,12 @@ ...@@ -752,12 +772,12 @@
<string name="button_copy_code">Salin kode</string> <string name="button_copy_code">Salin kode</string>
<string name="textview_coupon_choose">Promo tersedia</string> <string name="text_coupon_choose">Promo tersedia</string>
<string name="title_activity_detail">Rincian acara</string> <string name="title_activity_detail">Rincian acara</string>
<string name="title_choose_coupon">Pilih kupon yang tersedia</string> <string name="title_choose_coupon">Pilih kupon yang tersedia</string>
<string name="button_video_play">Play</string> <string name="button_video_play">Play</string>
<string name="text_invite_code_login_tips">*Hanya berlaku untuk login pertama</string> <string name="text_invite_code_login_tips">*Hanya berlaku untuk login pertama</string>
<string name="textview_loan_period">Jangka waktu pinjaman</string> <string name="text_loan_period">Jangka waktu pinjaman</string>
<string name="title_loan_info">Rincian pinjaman</string> <string name="title_loan_info">Rincian pinjaman</string>
<string name="show_read_agreement">Mohon baca dan setujui perjanjian pinjaman untuk melanjutkan ke langkah selanjutnya</string> <string name="show_read_agreement">Mohon baca dan setujui perjanjian pinjaman untuk melanjutkan ke langkah selanjutnya</string>
<string name="btn_read_agreemment">Perjanjian</string> <string name="btn_read_agreemment">Perjanjian</string>
...@@ -776,7 +796,7 @@ ...@@ -776,7 +796,7 @@
<string name="toast_input_password_longger_than_five">Silahkan masukan password logger dari lima</string> <string name="toast_input_password_longger_than_five">Silahkan masukan password logger dari lima</string>
<string name="title_area_selector">select area</string> <string name="title_area_selector">select area</string>
<string name="show_has_copyed_to_clip_board">kode mengundang telah disalin</string> <string name="show_has_copyed_to_clip_board">kode mengundang telah disalin</string>
<string name="textview_personal_info_region">Info wilayah</string> <string name="text_personal_info_region">Info wilayah</string>
<string name="text_get_more_message">--Lebih banyak pesan--</string> <string name="text_get_more_message">--Lebih banyak pesan--</string>
<string name="text_choose_pic">Pilih gambar</string> <string name="text_choose_pic">Pilih gambar</string>
<string name="text_take_photo">memotret</string> <string name="text_take_photo">memotret</string>
...@@ -787,10 +807,10 @@ ...@@ -787,10 +807,10 @@
<string name="text_coupon_usable_period">Menerima:</string> <string name="text_coupon_usable_period">Menerima:</string>
<string name="btn_use_coupon">Gunakan Segera</string> <string name="btn_use_coupon">Gunakan Segera</string>
<string name="to">Untuk</string> <string name="to">Untuk</string>
<string name="textview_refrash">==Refrash==</string> <string name="text_refrash">==Refrash==</string>
<string name="show_download_message_failed">Download message failed</string> <string name="show_download_message_failed">Download message failed</string>
<string name="show_sms_send_too_much">sms send too much in one hour,try latter</string> <string name="show_sms_send_too_much">sms send too much in one hour,try latter</string>
<string name="textview_coupon_limit">Tidak diizinkan untuk menggunakan kupon lainnya</string> <string name="text_coupon_limit">Tidak diizinkan untuk menggunakan kupon lainnya</string>
<string name="enum_education_DIPLOMA_I">DIPLOMA_I</string> <string name="enum_education_DIPLOMA_I">DIPLOMA_I</string>
...@@ -849,8 +869,8 @@ ...@@ -849,8 +869,8 @@
<string name="need_permission">Perlu izin %s agar program berjalan dengan baik. Silakan pergi ke pusat pengaturan izin untuk mengizinkan izin ini.</string> <string name="need_permission">Perlu izin %s agar program berjalan dengan baik. Silakan pergi ke pusat pengaturan izin untuk mengizinkan izin ini.</string>
<string name="error_occured">Terjadi kesalahan</string> <string name="error_occured">Terjadi kesalahan</string>
<string name="call_log_alert">Kami membutuhkan informasi log panggilan Anda untuk mengidentifikasi Anda dan mempercepat pinjaman Anda. Mohon berikan kami izin ini. Anda bisa memberikan izin di perangkat lunak manajemen keamanan atau setting.</string> <string name="call_log_alert">Kami membutuhkan informasi log panggilan Anda untuk mengidentifikasi Anda dan mempercepat pinjaman Anda. Mohon berikan kami izin ini. Anda bisa memberikan izin di perangkat lunak manajemen keamanan atau setting.</string>
<string name="textview_me_policy">Kebijakan Privasi</string> <string name="text_me_policy">Kebijakan Privasi</string>
<string name="private_permission_title">@string/textview_me_policy</string> <string name="private_permission_title">@string/text_me_policy</string>
<string name="private_permission_message">Pelanggan terhormat, agar kami dapat memberikan pelayanan secara cepat, tepat dan berkualitas kepada anda, Silahkan menyetujui hak akses app ke:</string> <string name="private_permission_message">Pelanggan terhormat, agar kami dapat memberikan pelayanan secara cepat, tepat dan berkualitas kepada anda, Silahkan menyetujui hak akses app ke:</string>
<string name="private_permission_keep">kami akan menjaga dan mentaati kebijakan privasi pelanggan</string> <string name="private_permission_keep">kami akan menjaga dan mentaati kebijakan privasi pelanggan</string>
<string name="blue_pay_bank_code">013</string> <string name="blue_pay_bank_code">013</string>
...@@ -858,8 +878,8 @@ ...@@ -858,8 +878,8 @@
<string name="i_agree_this_policy">Saya setuju dengan kebijakan ini</string> <string name="i_agree_this_policy">Saya setuju dengan kebijakan ini</string>
<string name="read_policy_fully">*Mohon baca sepenuhnya kebijakan ini</string> <string name="read_policy_fully">*Mohon baca sepenuhnya kebijakan ini</string>
<string name="check_the_checkbox">Setujui kebijakan tersebut dengan mencentang kotak centang</string> <string name="check_the_checkbox">Setujui kebijakan tersebut dengan mencentang kotak centang</string>
<string name="textview_field_identity_info">Informasi identitas</string> <string name="text_field_identity_info">Informasi identitas</string>
<string name="textview_field_identity_info_2">Informasi \n identitas</string> <string name="text_field_identity_info_2">Informasi \n identitas</string>
<string name="double_click_exit_tip">Tekan lagi untuk keluar dari aplikasi</string> <string name="double_click_exit_tip">Tekan lagi untuk keluar dari aplikasi</string>
<string name="upload_your_ktp_photo">Upload Foto KTP Anda</string> <string name="upload_your_ktp_photo">Upload Foto KTP Anda</string>
<string name="take_ktp_photo_tips">Foto yang Anda upload sesuai dengan KTP Anda. KTP Anda harus tampak valid dan jelas.</string> <string name="take_ktp_photo_tips">Foto yang Anda upload sesuai dengan KTP Anda. KTP Anda harus tampak valid dan jelas.</string>
...@@ -871,6 +891,7 @@ ...@@ -871,6 +891,7 @@
<string name="dialog_remove">Menghapus</string> <string name="dialog_remove">Menghapus</string>
<string name="dialog_replace">Unggah Ulang</string> <string name="dialog_replace">Unggah Ulang</string>
<string name="dialog_take_other_photo_tips"> <string name="dialog_take_other_photo_tips">
\n \n
1.Untuk persyaratan document..point 1 KTP adalah wajib \n 1.Untuk persyaratan document..point 1 KTP adalah wajib \n
......
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
</style> </style>
<style name="span_text"> <style name="span_text">
<item name="android:textSize">14sp</item> <item name="android:textSize">@dimen/x_42</item>
<item name="android:textColor">@color/qmui_config_color_gray_1</item> <item name="android:textColor">@color/qmui_config_color_gray_1</item>
<item name="android:gravity">center_vertical</item> <item name="android:gravity">center_vertical</item>
<item name="android:background">@color/translateColor</item> <item name="android:background">@color/translateColor</item>
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
<style name="gray_line"> <style name="gray_line">
<item name="android:layout_width">match_parent</item> <item name="android:layout_width">match_parent</item>
<item name="android:layout_height">@dimen/x_3</item> <item name="android:layout_height">@dimen/x_3</item>
<item name="android:background">@color/qmui_config_color_gray_9</item> <item name="android:background">@color/gray_bg</item>
</style> </style>
<!--行标题--> <!--行标题-->
...@@ -141,6 +141,7 @@ ...@@ -141,6 +141,7 @@
<!--行标题--> <!--行标题-->
<style name="span_title3" parent="span_title"> <style name="span_title3" parent="span_title">
<item name="android:textSize">13sp</item> <item name="android:textSize">13sp</item>
<item name="android:textColor">@color/qmui_config_color_gray_8</item>
</style> </style>
<!--主色调按钮--> <!--主色调按钮-->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment