Ok. J'ai regardé partout et mon petit cerveau ne peut pas comprendre une meilleure façon de rafraîchir une activité. Toutes les suggestions que je peux comprendre seraient géniales. :)Existe-t-il un meilleur moyen d'actualiser WebView?
Voici le code java:
package com.dge.dges;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.webkit.WebView;
import android.widget.Button;
public class dgeActivity extends Activity {
WebView mWebView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings();
mWebView.loadUrl("http://www.websitehere.php");
Button newButton = (Button)findViewById(R.id.new_button);
newButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(dgeActivity.this, dgeActivity.class);
startActivity(intent);
}
});
}
}
Et voici le main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
>
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
/>
<Button
android:id="@+id/new_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Refresh"
/>
</RelativeLayout>
Je n'aime pas l'idée d'une activité juste re-empilement après l'activité. Il doit y avoir un moyen plus simple de rafraîchir le webview. S'il vous plaît aider. :)
soooo ROCK !!! Merci beaucoup. Cela a fonctionné parfaitement! WHOO HOOOO !!!! :) – cdg
Maintenant, si je pouvais seulement le transformer en un widget ....: D – cdg
Josh réponse est la bonne. Votre volonté de recharger la même URL. –