你能帮我解释一下这段代码吗?

时间:2014-03-08 16:08:17

标签: java android webview

问题:当我输入ID并按下按钮时,它不会加载ID的网页......

“网址”是我正在尝试创建的网页,(隐藏的原因有很多)

它应该工作,它加载第一个站点,但当我尝试调用ID时,WebView不会改变...有人可以帮助我吗?谢谢,JG1

我的代码:

@Override
protected void onCreate(Bundle savedInstanceState) {
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    wv.setWebViewClient(new OurViewClient());
    wv.getSettings().setJavaScriptEnabled(true);
    try {
        String url = "a url";
        wv.loadUrl(url);
    } catch (Exception e) {
        e.printStackTrace();
    }
    String lid = "0";

    //Clicking button changes to the color

}

final EditText idbox = (EditText) findViewById(R.id.editText1);
final Button idbutton = (Button) findViewById(R.id.idbtn);
final WebView wv = (WebView) findViewById(R.id.webView1);

public void onClick(View v) {
    idbutton.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            String lid = idbox.getText().toString();
            if (lid == "1") {
                wv.setWebViewClient(new OurViewClient());
                try {
                    String urla = "a url";
                    wv.loadUrl(urla);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            if (lid == "2") {
                wv.setWebViewClient(new OurViewClient());
                try {
                    String urlb = "a url";
                    wv.loadUrl(urlb);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            if (lid == "3") {
                wv.setWebViewClient(new OurViewClient());
                try {
                    String urlc = "a url";
                    wv.loadUrl(urlc);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
    });
}

2 个答案:

答案 0 :(得分:0)

我猜,你被称为相同的URL值(“一个网址”)。如果是,请尝试在Web视图中加载不同的URL。

如果没有,请在代码中进行以下更改

  • 使用断点来调试您获得EditText值的代码。

    String lid = idbox.getText()。toString(); //检查盖子是 null 还是

  • 更改if条件,

    如果

    (lid.equalsIgnoreCase( “1”))    {    //渲染网页的任务    }

  • 检查自定义视图客户端类。

答案 1 :(得分:0)

没关系,您写的onClick()方法定义错误!

我很困惑因为,

  • 您是否在xml中为按钮添加了onclick( android:onClick =“onClick”)功能。

    尽管我在代码中做了一些改动,

<强> activity_main.xml中:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="2" >

    <EditText
        android:id="@+id/urlValue"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="2dp"
        android:layout_weight="1.5" />

    <Button
        android:id="@+id/urlBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="2dp"
        android:layout_weight="0.5" 
        android:text="load"/>
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <WebView
        android:id="@+id/webView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

<强> MainActivity.java:

public class MainActivity extends Activity {

private EditText getUrlValue;
private Button loadUrl;
private WebView webView;
String loadId = "";
String URL_ONE = "a_url";
String URL_TWO = "b_url";
String URL_THREE = "c_url";

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

    getUrlValue = (EditText)findViewById(R.id.urlValue);
    loadUrl = (Button)findViewById(R.id.urlBtn);
    webView = (WebView)findViewById(R.id.webView);

    //initial view for webView
    getUrlValue.setText("1"); //here web page will load first url= "a url"

    webView.setWebViewClient(new OurViewClient());

    //onClick Event for load url button
    loadUrl.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            loadId = getUrlValue.getText().toString();
            if(loadId.equalsIgnoreCase("1")){
                try{

                    webView.loadUrl(URL_ONE);
                    }catch (Exception e){
                        e.printStackTrace();
                    }
            }
            else if(loadId.equalsIgnoreCase("2")){
                try{
                    webView.loadUrl(URL_TWO);
                    }catch (Exception e){
                        e.printStackTrace();
                    }

            }
            else{
                try{
                    webView.loadUrl(URL_THREE);
                    }catch (Exception e){
                        e.printStackTrace();
                    }
           }
        }
       });

    }
 }
  • 请记得在清单xml文件中添加互联网权限。

快乐的编码......