问题描述
hellosir
i为appinventor类中的我的Android应用程序创建了两个文本框
上面url中的semister编号的一个文本框
http://doeresults.gitam.edu/onlineresults/pages/NewReportviewer1.aspx?sem=®=\">
即sem =
注册号码的另一个文本框
即reg =
两个文本框应该放在url中的相应位置
i用于此逻辑的连接组件,但它只需要一个字符串
请帮我先生为这个逻辑构建块
hellosir
i have created two text boxs for my android app in appinventor class
one text box for semister number in the above url
"http://doeresults.gitam.edu/onlineresults/pages/NewReportviewer1.aspx?sem=®=">
i.e sem=
another text box for registerd number
i.e reg=
the text in the two text boxes should be placed in the respective positions in the url
i used join component for this logic but it is taking only one string
please help me sir to bulid blocks for this logic
推荐答案
String semStr = semTxt.getText().toString();
String regStr = regTxt.getText().toString();
和你的网址,
http://doeresults.gitam.edu /onlineresults/pages/NewReportviewer1.aspx?sem=+ semStr +& reg =+ regStr
这篇关于应用程序发明人文本框字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!