How To Open More Than One Xml Forms From A Single Main Page
i am beginner to android plz help i hav a main page and i want to open one form on each button....but it is opening only one page the remaining pages gives error..... here is my xm
Solution 1:
Declare all the activity which you are calling in manifest file inside the tag as
<activityandroid:name=".temperature"/><activityandroid:name=".weight"/>
or if you use these classes in different package then you have to declare with the package as
<activityandroid:name="com.org.xxx.temperature"><activityandroid:name="com.org.xxx.weight">
check your manifest file..it may helpful to you...
Post a Comment for "How To Open More Than One Xml Forms From A Single Main Page"