webviewを使用して、ApacheサーバーがAndroidプログラムから資格情報を取得できないようです。資格情報は要求されません。何が欠けているのかわかりません。
これが私のコードです
package united.alert.mobile;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class UnitedAlertActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.loadUrl("http://unitedalert.info/m");
}
public void PasswordAuthentication (String userName, String password){
userName = "m*bile2012";
password = "1234567";
}
}