cancel
Showing results for 
Search instead for 
Did you mean: 

Agentry(Android)OPEN UI - Unable to get values from Android code to Agentry side

Former Member
0 Kudos

Hi All,

I am working on openUI task..

I want to get the value of openUI code into agentry property, right now I am getting empty value. please tell me which method i have to use to get value at agentry side.

my code is attached here with

Regards,

Reshma

Accepted Solutions (1)

Accepted Solutions (1)

mohit_tyagi
Participant
0 Kudos

Hi Reshma

Currently Your if block is not getting value because { if(name.equals(text)) } here text contain some other value. Please try below code:-

public String getExtensionString(String name)

{

     String value="";

     if(name.equals(text))

     {

      value="null";

     }

   else{

   value=text.toString();

   }

return value;

}

Hope its working for you

Former Member
0 Kudos

Hi Mohit,

Thanks for your reply, it's working fine.

Thanks and Regards,

Reshma Pithade

Answers (0)