我在搜索框下面有一个搜索框,一个webview。 当我在搜索框中输入“hello”时,webview会显示html文件“hello.html” 但当我改变(“file:/// android_asset /”+ srt)为(“file:/// android_asset / main /”+ srt) webview说文件main / hello.html找不到。
我的完整代码是:
package com.kerk.liedboek;
import com.kerk.liedboek.R;
import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import android.view.View.OnClickListener;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class psalmen extends Activity {
WebView webview;
/** Called when the activity is first created. */
final Activity activity = this;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
this.getWindow().requestFeature(Window.FEATURE_PROGRESS);
setContentView(R.layout.main);
webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
EditText edit = (EditText) findViewById(R.id.editText1);
String str = edit.getText().toString() +".html";
webview.loadUrl("file:///android_asset/main/"+str); }
});
}
}
我做错了什么?
当我有(“file:/// android_asset /”+ str)它工作正常,但另一个没有。 我希望你理解我,你可以帮助我。
Gromdroid
答案 0 :(得分:1)
您不能在任何Android资源文件夹中拥有子文件夹。
但看起来你试图加载一个html文件。把它放在原始文件夹中:
/res/raw/home.html
然后使用:
file:///android_asset/raw/home.html