我正在學習Android開發並已完成第一個應用程序(https://developer.android.com/training/basics/firstapp/index.html)。現在,我添加了第二個文本字段和第二個按鈕。這個想法是,用戶將在文本字段中輸入的文本將用作Google搜索引擎中的輸入。Android:WebView簡單應用程序
所以我做了以下內容:
修改了AndroidManifest.xml
添加的權限<uses-permission android:name="android.permission.INTERNET" />
。
修改我的MainActivity.java
將呼叫添加到我的新的活動:
/** Called when the user taps the Search button */
public void searchMessage(View view) {
Intent intent = new Intent(this, DisplaySearchActivity.class);
EditText editText = (EditText) findViewById(R.id.editText3);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}
然後,創建具有的WebView一個新的活動和,現在只是顯示的主頁Google.com
public class DisplaySearchActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_search);
// Get the Intent that started this activity and extract the string
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.loadUrl("https://www.google.com");
}
}
最後,我的activity_display_search.xml
看起來像這樣
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.myapplication.DisplaySearchActivity">
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</android.support.constraint.ConstraintLayout>
當我點擊Search
按鈕時,應用程序會將我帶到Search WebView,但沒有任何反應。我在這裏錯過了什麼?
'https'不'http' – Ibrahim
首先,它好像你沒有做你創建,通過'Intent'傳遞給你的顯示器消息'message'變量什麼,是故意的嗎? – Brian
謝謝你指出。但是,還有一些其他的缺失,應用程序頁面仍然無法加載。 –