Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a keyboard but there is some error in local variable usage.

 private void updateCandidateText(){
        try{

            ExtractedText r= getCurrentInputConnection().getExtractedText(new ExtractedTextRequest(),InputConnection.GET_EXTRACTED_TEXT_MONITOR);
            String strbeforeCursor="";
            String strafterCursor ="";
                strbeforeCursor = getCurrentInputConnection().getTextBeforeCursor(1000000000, 0).toString();
            strafterCursor = getCurrentInputConnection().getTextAfterCursor(1000000000, 0).toString();
            String str = strbeforeCursor + "|"+strafterCursor;
            if(mTamilPreviewView != null)
                mTamilPreviewView.update(str, strbeforeCursor.length());

            mTamilPreviewView.update(r.text.toString() , 0);
        }
        catch (Exception e) {
            Log.e("t", "errr", e);
        }    
    }
share|improve this question
2  
Can you please tell us what error do you get? – Benoît Guédas Mar 1 at 6:48
getting error in local method defenition – user2122423 Mar 1 at 7:16
@user2122423: the error comes with a specific message. Reading this message allows understanding what the error is, instead of guessing. Paste the complete and exact error message here. – JB Nizet Mar 1 at 7:49

1 Answer

You test if mTamilPreviewView != null to call

mTamilPreviewView.update(str, strbeforeCursor.length());

but even if it's null, you'll do

mTamilPreviewView.update(r.text.toString() , 0);

and you'll get a NullPointerException. Is it really what you want to do? Don't you mean

if (mTamilPreviewView != null) {
    mTamilPreviewView.update(str, strbeforeCursor.length());
    mTamilPreviewView.update(r.text.toString() , 0);
}

Moreover, you initialize strbeforeCursor and strafterCursor with an empty string, and you give them other values at the next lines. You could simply remove

String strbeforeCursor="";
String strafterCursor ="";

and do

String strbeforeCursor = getCurrentInputConnection().getTextBeforeCursor(1000000000, 0).toString();
String strafterCursor = getCurrentInputConnection().getTextAfterCursor(1000000000, 0).toString();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.