mirror of
https://github.com/lubosz/overte.git
synced 2025-04-07 00:02:37 +02:00
Add hifi scheme for scheme-less addresses
This commit is contained in:
parent
20acfdfb82
commit
ffb38eb490
1 changed files with 13 additions and 0 deletions
|
@ -12,6 +12,9 @@ import android.view.View;
|
|||
import android.view.inputmethod.EditorInfo;
|
||||
import android.widget.EditText;
|
||||
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
|
||||
public class GotoActivity extends AppCompatActivity {
|
||||
|
||||
private EditText mUrlEditText;
|
||||
|
@ -53,6 +56,16 @@ public class GotoActivity extends AppCompatActivity {
|
|||
private void actionGo() {
|
||||
String urlString = mUrlEditText.getText().toString();
|
||||
if (!urlString.trim().isEmpty()) {
|
||||
URI uri;
|
||||
try {
|
||||
uri = new URI(urlString);
|
||||
} catch (URISyntaxException e) {
|
||||
return;
|
||||
}
|
||||
if (uri.getScheme()==null || uri.getScheme().isEmpty()) {
|
||||
urlString = "hifi://" + urlString;
|
||||
}
|
||||
|
||||
Intent intent = new Intent(this, InterfaceActivity.class);
|
||||
intent.putExtra(InterfaceActivity.DOMAIN_URL, urlString);
|
||||
finish();
|
||||
|
|
Loading…
Reference in a new issue