small changes
This commit is contained in:
parent
3b44211bf4
commit
275cc58e8a
3 changed files with 42 additions and 12 deletions
|
@ -3,6 +3,7 @@
|
||||||
android:background="@color/color_white"
|
android:background="@color/color_white"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical"
|
xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical"
|
||||||
|
android:clickable="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
@ -57,7 +58,6 @@
|
||||||
android:textColor="@color/color_black"
|
android:textColor="@color/color_black"
|
||||||
android:textColorLink="@color/icon_color_active_light"
|
android:textColorLink="@color/icon_color_active_light"
|
||||||
android:layout_marginRight="16dp"
|
android:layout_marginRight="16dp"
|
||||||
android:autoLink="all"
|
|
||||||
android:text="@string/register_on_openplacereviews_desc"/>
|
android:text="@string/register_on_openplacereviews_desc"/>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
|
|
@ -5,7 +5,6 @@ import android.graphics.PorterDuff;
|
||||||
import android.graphics.drawable.Drawable;
|
import android.graphics.drawable.Drawable;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.webkit.CookieManager;
|
import android.webkit.CookieManager;
|
||||||
import android.webkit.WebResourceRequest;
|
|
||||||
import android.webkit.WebView;
|
import android.webkit.WebView;
|
||||||
import android.webkit.WebViewClient;
|
import android.webkit.WebViewClient;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
@ -27,7 +26,7 @@ public class OPRWebviewActivity extends OsmandActionBarActivity {
|
||||||
private static final String finishUrl = cookieUrl;
|
private static final String finishUrl = cookieUrl;
|
||||||
public static String KEY_TITLE = "TITLE_KEY";
|
public static String KEY_TITLE = "TITLE_KEY";
|
||||||
private final Log log = PlatformUtil.getLog(OPRWebviewActivity.class);
|
private final Log log = PlatformUtil.getLog(OPRWebviewActivity.class);
|
||||||
private boolean isRegister = false;
|
private boolean isLogin = false;
|
||||||
|
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
@ -47,8 +46,8 @@ public class OPRWebviewActivity extends OsmandActionBarActivity {
|
||||||
webView.getSettings().setJavaScriptEnabled(true);
|
webView.getSettings().setJavaScriptEnabled(true);
|
||||||
WebView.setWebContentsDebuggingEnabled(true);
|
WebView.setWebContentsDebuggingEnabled(true);
|
||||||
if (b != null) {
|
if (b != null) {
|
||||||
isRegister = b.getBoolean(KEY_LOGIN);
|
isLogin = b.getBoolean(KEY_LOGIN);
|
||||||
if (isRegister) {
|
if (isLogin) {
|
||||||
webView.loadUrl(loginUrl);
|
webView.loadUrl(loginUrl);
|
||||||
} else {
|
} else {
|
||||||
webView.loadUrl(registerUrl);
|
webView.loadUrl(registerUrl);
|
||||||
|
@ -91,7 +90,7 @@ public class OPRWebviewActivity extends OsmandActionBarActivity {
|
||||||
public class CloseOnSuccessWebViewClient extends WebViewClient {
|
public class CloseOnSuccessWebViewClient extends WebViewClient {
|
||||||
@Override
|
@Override
|
||||||
public void onPageFinished(WebView view, String url) {
|
public void onPageFinished(WebView view, String url) {
|
||||||
if (url.contains(finishUrl) && !isRegister) {
|
if (url.contains(finishUrl) && isLogin) {
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
super.onPageFinished(view, url);
|
super.onPageFinished(view, url);
|
||||||
|
|
|
@ -2,15 +2,22 @@ package net.osmand.plus.openplacereviews;
|
||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.text.SpannableString;
|
||||||
|
import android.text.Spanned;
|
||||||
|
import android.text.TextPaint;
|
||||||
|
import android.text.method.LinkMovementMethod;
|
||||||
|
import android.text.style.URLSpan;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.TextView;
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import net.osmand.plus.R;
|
import net.osmand.plus.R;
|
||||||
import net.osmand.plus.base.BaseOsmAndFragment;
|
import net.osmand.plus.base.BaseOsmAndFragment;
|
||||||
|
|
||||||
public class OprStartFragment extends BaseOsmAndFragment {
|
public class OprStartFragment extends BaseOsmAndFragment {
|
||||||
|
private static String openPlaceReviewsUrl = "OpenPlaceReviews.org";
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
||||||
|
@ -39,6 +46,30 @@ public class OprStartFragment extends BaseOsmAndFragment {
|
||||||
startActivity(i);
|
startActivity(i);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
setURLSpan(v);
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void setURLSpan(View v) {
|
||||||
|
String desc = requireContext().getString(R.string.register_on_openplacereviews_desc);
|
||||||
|
SpannableString ss = new SpannableString(desc);
|
||||||
|
ss.setSpan(new URLSpanNoUnderline("https://" + openPlaceReviewsUrl), desc.indexOf(openPlaceReviewsUrl),
|
||||||
|
desc.indexOf(openPlaceReviewsUrl) + openPlaceReviewsUrl.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
|
||||||
|
v.<TextView>findViewById(R.id.start_opr_description).setText(ss);
|
||||||
|
v.<TextView>findViewById(R.id.start_opr_description).setMovementMethod(LinkMovementMethod.getInstance());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private class URLSpanNoUnderline extends URLSpan {
|
||||||
|
public URLSpanNoUnderline(String url) {
|
||||||
|
super(url);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateDrawState(TextPaint ds) {
|
||||||
|
super.updateDrawState(ds);
|
||||||
|
ds.setUnderlineText(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue