Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7890237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:18:13+00:00 2026-06-03T06:18:13+00:00

i want to fill in fields with this code but it gives me error

  • 0

i want to fill in fields with this code but it gives me error

Account[] accounts = AccountManager.get(this).getAccounts();
    for (Account account : accounts) {
      // TODO: Check possibleEmail against an email regex or treat
      // account.name as an email address only for certain account.type values.


      String possibleEmail = account.name;



    myWebView.setWebViewClient(new HelloWebViewClient());

    setTitleColor(Color.GRAY); //the title bar color
    myWebView.loadUrl("http://m.gmail.com");
    myWebView.loadUrl("javascript: {document.getElementById('id_email').value ='"+possibleEmail+"'};");


} 

It gives me this error

05-02 20:28:24.191: E/Web Console(1402): Uncaught TypeError: Cannot set property ‘value’ of null at :1

Thanks for your help

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T06:18:14+00:00Added an answer on June 3, 2026 at 6:18 am

    loadURL is asynchronous; in other words, calling loadUrl kicks off the HTTP request, but then returns immediately, before the document is downloaded and rendered. The error you’re seeing is because you’re trying to execute the javascript too early (before the document is downloaded, parsed, and rendered).

    You’ll need to use a WebViewClient, and wait for the page to finish loading before you execute your javascript. Try the onPageFinished callback, but be careful that you can sometimes get multiple callbacks because of iFrames and the like.

    Hope that helps.

    EDIT
    If you are targeting KITKAT and above then you also have to take care of which method to use based on android version. Follwoing code give a much better explanation:

     if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT)
     {
            webView.evaluateJavascript(yourScript, null);
     }
     else
     {
           webView.loadUrl(yourScript);
    
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to prompt for a first/last name in this code, but I cannot
I want to fill an selectOneMenu with fields from my DataBase and then use
I want to fill a map with class name and method, a unique identifier
I want to fill an array in javascript that takes all the values out
I want to fill a ListView without an array of all the same things.
I want to fill jqGrid from a stored procedure, there was 1 good example
I want to fill all cells with the same control. What I have now
I simply want to fill-up cells in my spreadsheet from a VBA function. By
I Had Drop down list and I want to fill it with data from
I am using JSON for first time... and want to fill my datagrid with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.