Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello everyone,

I have one application which is made in .net (which is LMS , learning management system) now there are many flash files which explains subject matter, now as android is freely available i need to load that android .apk files in my application..
But as searched .apk files run only on "Android Emulator", so if possible tell me how it is possible to view that .apk files in my application without "Android Emulator"...

OR ELSE

if possible "Android Emulator" could be viewed on fullscreen (Screen size),so that i could place a button on my application and which could load that emulator and load .apk files in "Android Emulator" but in full screen..

Please help me in solving this problem

Thanks in advance,
Regards,
Krunal Panchal
Posted

1 solution

OK , i assume that you are using Eclipse as your IDE.
I don't where is there problem but there some answers in each segment of the question:
- while debuging press alt+enter to have a full screen
- Add to the application AndroidManifest.xml file this, to assure that application can run in full screeen :
<supports-screens>
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
- All options of the emulator - http://developer.android.com/guide/developing/tools/emulator.html
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900