зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1432624 - Left-truncate and ellipsize domain in custom tabs to reduce phishing risk. r=snorp
This commit is contained in:
Родитель
1dc8c21c65
Коммит
1c29a391df
|
@ -52,7 +52,7 @@
|
|||
android:singleLine="true"
|
||||
android:textColor="?android:textColorPrimary"
|
||||
android:textSize="10sp"
|
||||
android:ellipsize="middle"
|
||||
android:ellipsize="start"
|
||||
android:scrollHorizontally="true"
|
||||
tools:text="https://mozilla.org"/>
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ package org.mozilla.gecko.customtabs;
|
|||
import android.content.res.Resources;
|
||||
import android.graphics.drawable.ColorDrawable;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.net.Uri;
|
||||
import android.os.Build;
|
||||
import android.os.Handler;
|
||||
import android.support.annotation.ColorInt;
|
||||
|
@ -237,7 +238,8 @@ public class ActionBarPresenter {
|
|||
mUrlView.setVisibility(View.GONE);
|
||||
} else {
|
||||
mTitleView.setText(title);
|
||||
mUrlView.setText(url);
|
||||
String domain = Uri.parse(url).getHost();
|
||||
mUrlView.setText(domain);
|
||||
mUrlView.setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче