gpt4 book ai didi

android - 从编辑文本中删除 URL 时 Webview 自动获得焦点

转载 作者:行者123 更新时间:2023-11-29 19:15:22 24 4
gpt4 key购买 nike

我有一个编辑文本、5 个按钮和一个 Webview。当用户在编辑文本中键入 url 并点击 Go 按钮或在软键盘上按 Enter 时,Webview 加载 url。我在这里遇到三个问题。

1-WebView 加载网站,例如“www.google.com”,但软键盘不会隐藏自身。我想像其他浏览器一样隐藏它。

2-当用户打开一个特定的 url 然后尝试从编辑文本中删除它以打开另一个 url 时,webview 开始加载那个不完整的 url 并自动将焦点放在每个删除的字母上。例如用户加载“www.google.com”然后他尝试从末尾删除 url 并且当他删除“m”时,webview 尝试加载“www.google.co”然后编辑文本失去焦点并且 webview 偷走了焦点然后用户必须再次点击编辑文本以删除 url,但它会在删除每个字母后尝试加载。仅当用户点击 Go 按钮或在软键盘上按下 Enter 时,我才需要 Webview 加载 url。

更新(忘记补充第三个问题了,这里是)

3-我在哪里可以检查 WebView CanGoBack 和 CanGoForward 的时间,因为我想在启动时将后退和前进按钮的可见性设置为 false,并在它们 CanGoBack 和 CanGoForward 时启用这两个按钮。我应该在哪里放置我的代码来检查这些条件?

我希望你们能理解我想说的。对不起我的英语不好。

这是我的 xml 代码。

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="13"
tools:context="com.hbss.chatapp.rashidfaheem.hybridsoftwaresolutions.rashidfaheem.youseebrowser.MainActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:weightSum="4"
>


<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/etUrl"
android:layout_weight="3"
/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="GO"
android:id="@+id/btnGo"
/>


</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:weightSum="4"
>

<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Back"
android:id="@+id/btnBack"
/>

<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Forward"
android:id="@+id/btnForward"
/>

<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Clear"
android:id="@+id/btnClear"
/>

<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Reload"
android:id="@+id/btnReload"
/>


</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="11"
>
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/wb"
/>


</LinearLayout>


</LinearLayout>

这是我的java代码。

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
EditText etUrl;
Button btnGo, btnBack, btnForward, btnClear, btnReload;
WebView wb;
String url;
View v;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

wb = (WebView) findViewById(R.id.wb);
wb.getSettings().setJavaScriptEnabled(true);
wb.getSettings().setUseWideViewPort(true);
wb.getSettings().setLoadWithOverviewMode(true);
wb.setWebViewClient(new ourClient());



etUrl = (EditText) findViewById(R.id.etUrl);
btnGo = (Button) findViewById(R.id.btnGo);
btnBack = (Button) findViewById(R.id.btnBack);
btnForward = (Button) findViewById(R.id.btnForward);
btnClear = (Button) findViewById(R.id.btnClear);
btnReload = (Button) findViewById(R.id.btnReload);

btnGo.setOnClickListener(this);
btnReload.setOnClickListener(this);
btnBack.setOnClickListener(this);
btnForward.setOnClickListener(this);
btnClear.setOnClickListener(this);

etUrl.setOnKeyListener(new View.OnKeyListener() {
@Override
public boolean onKey(View view, int i, KeyEvent keyEvent) {
if (keyEvent.getAction()==KeyEvent.ACTION_DOWN && i==KeyEvent.KEYCODE_ENTER) {
return true;
}
load();
return false;
}
});
}

@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btnGo:
load();
break;
case R.id.btnBack:
if (wb.canGoBack())
wb.goBack();
break;
case R.id.btnForward:
if (wb.canGoForward())
wb.goForward();
break;
case R.id.btnReload:
wb.reload();
break;
case R.id.btnClear:
wb.clearHistory();
break;
}
}

public void load(){
url = etUrl.getText().toString();
if (!url.startsWith("http://")) {
url = "http://" + url;
}
try {
wb.loadUrl(url);
wb.requestFocus();

} catch (Exception e) {
Toast.makeText(getApplicationContext(), " " + e, Toast.LENGTH_LONG).show();
}

}

最佳答案

使用此方法隐藏键盘:

 public static void hideSoftKeyboard(Activity context) {
InputMethodManager inputManager = (InputMethodManager) context
.getSystemService(Context.INPUT_METHOD_SERVICE);
if (inputManager != null)
inputManager.hideSoftInputFromWindow(context.getWindow()
.getDecorView().getApplicationWindowToken(), 0);
context.getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

}

在您的 load() 方法中调用它,例如:

hideSoftKeyboard(MainActivity.this);

对于您的第二个问题,您需要在条件内调用您的方法,例如:

etUrl.setOnKeyListener(new View.OnKeyListener() {
@Override
public boolean onKey(View view, int i, KeyEvent keyEvent) {
if ((keyEvent.getAction()==KeyEvent.ACTION_DOWN) && (i==KeyEvent.KEYCODE_ENTER)){
load(); //add it here
return true;
}
return false;
}
});

编辑

对于 webview 返回功能:在您的 Activity 中覆盖 onKeyDown 并检查条件,例如:

 @Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
// Check if the key event was the Back button and if there's history
if ((keyCode == KeyEvent.KEYCODE_BACK) && wb.canGoBack()) {
wb.goBack();
//show your back button here
return true;
}
// If it wasn't the Back key or there's no web page history, bubble up to the default
// system behavior (probably exit the activity)
//show other buttons
return super.onKeyDown(keyCode, event);
}

您还可以在 onResume()load() 中添加检查,并相应地显示您的按钮..

@Override
protected void onResume() {
super.onResume();
if(wb.canGoBack()){
//show back button}
else{
//other button
}
}

关于android - 从编辑文本中删除 URL 时 Webview 自动获得焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43710772/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com