Merge pull request #522 from fid-jose/dev
Show realm in HTTP auth dialog
This commit is contained in:
commit
fb84baa956
@ -26,6 +26,7 @@ import android.webkit.WebView;
|
||||
import android.webkit.WebViewClient;
|
||||
import android.widget.EditText;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
import java.net.URISyntaxException;
|
||||
@ -127,11 +128,14 @@ public class LightningWebClient extends WebViewClient {
|
||||
final String host, final String realm) {
|
||||
|
||||
AlertDialog.Builder builder = new AlertDialog.Builder(mActivity);
|
||||
final TextView realmLabel = new TextView(mActivity);
|
||||
final EditText name = new EditText(mActivity);
|
||||
final EditText password = new EditText(mActivity);
|
||||
LinearLayout passLayout = new LinearLayout(mActivity);
|
||||
passLayout.setOrientation(LinearLayout.VERTICAL);
|
||||
realmLabel.setText(mActivity.getString(R.string.label_realm, realm));
|
||||
|
||||
passLayout.addView(realmLabel);
|
||||
passLayout.addView(name);
|
||||
passLayout.addView(password);
|
||||
|
||||
|
@ -143,6 +143,7 @@
|
||||
<string name="action_allow">Allow</string>
|
||||
<string name="action_dont_allow">Don\'t Allow</string>
|
||||
<string name="title_sign_in">Sign In</string>
|
||||
<string name="label_realm">Server message: %s</string>
|
||||
<string name="hint_username">Username</string>
|
||||
<string name="hint_password">Password</string>
|
||||
<string name="search_suggestions">Search Suggestions</string>
|
||||
|
Loading…
Reference in New Issue
Block a user