0

用户有一个带有编辑文本和按钮的活动。在编辑文本中,他们必须插入他们的登录 ID。然后按 go 以显示其他活动,其中 webview 加载了正确的站点。

一个例子。这是我希望用户访问的链接。www.example.com/time/id=1 / type=student

如果 sombody 在编辑文本中输入 2,它将打开学生 id 2 的时间,依此类推。

这就是我所拥有的。

登录

package com.beter;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.app.Activity;
import android.content.Intent;


public class LoginActivity extends Activity {

Button go_btn;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.login);

            go_btn = (Button) findViewById(R.id.go_btn);




      go_btn.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // TODO Auto-generated method stub
            Intent myIntent = new Intent(LoginActivity.this, WebActivity.class);
            LoginActivity.this.startActivity(myIntent);
        }
    });      
}

和布局

<RelativeLayout 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" >

<EditText
    android:id="@+id/idfield"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:ems="10"
    android:hint="@string/id"
    android:inputType="number" >

    <requestFocus />
</EditText>

<Button
    android:id="@+id/go_btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/idfield"
    android:text="@string/login" />

Webview 活动

package com.beter;

import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;

public class WebActivity extends Activity  {


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.webview);


    WebView webview = new WebView(this);
    setContentView(webview);


    webview.loadUrl("http://roosters.gepro-osi.nl/roosters/rooster.php?wijzigingen=1&leerling=116277&type=Leerlingrooster&afdeling=12-13_OVERIG&school=905");
}
}

再次布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

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

</LinearLayout>

我如何进行用户输入。显示良好的网络视图。?

4

1 回答 1

3

首先在您的登录活动中获取对您的编辑文本的引用

 go_btn = (Button) findViewById(R.id.go_btn);
 ed_txt = (EditText)findViewById(R.id.youredittextid);

将您的 onClick 更改为

public void onClick(View v) {
  Intent myIntent = new Intent(LoginActivity.this, WebActivity.class);
  myIntent.putExtra("id", ed_txt.getText());
  LoginActivity.this.startActivity(myIntent);
}

然后在您的 WebActivity onCreate 中检索此 id

String id = getIntent().getExtras().getString("id");

那么你的网址将是

String myURL = "www.example.com/time/id="+id+"/type=student";
于 2012-12-08T15:11:03.100 回答