1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 10:49:24 +02:00

HttpConnection => HttpClient

This commit is contained in:
Nikolay Pultsin 2011-04-23 10:49:30 +01:00
parent 88b4f080c4
commit 5f8e454140
7 changed files with 101 additions and 208 deletions

View file

@ -64,11 +64,11 @@ public class AuthenticationActivity extends Activity {
findTextView(R.id.authentication_subtitle).setVisibility(View.GONE);
}
final TextView warningView = findTextView(R.id.authentication_unencrypted_warning);
if ("https".equalsIgnoreCase(intent.getStringExtra(SCHEME_KEY))) {
//if ("https".equalsIgnoreCase(intent.getStringExtra(SCHEME_KEY))) {
warningView.setVisibility(View.GONE);
} else {
warningView.setText(myResource.getResource("unencryptedWarning").getValue());
}
//} else {
// warningView.setText(myResource.getResource("unencryptedWarning").getValue());
//}
findTextView(R.id.authentication_username_label).setText(
myResource.getResource("login").getValue()
);