For This small demo project we require the following file structure
Main.axml file that contains code for hello world button on which we place button that will further generate the Dialog Box for Login Activity
Main.cs file Now this file will contain the code for Main.axml actions...
Showing posts with label java. Show all posts
Showing posts with label java. Show all posts
Saturday, 25 October 2014
Friday, 24 October 2014
Star Pattern Programs Cplusplus

Program To Print Following Star Pattern in Cpluplus
#include<iostream.h>
void main()
{
int i,j,k,n;
cout<<"\Enter the number of lines to be printed: ";
cin>>n;
for(i=0;i<n;i++)
{
...
Saturday, 4 October 2014
\adt-bundle-windows-x86_64-20130219\sdk\platform-tools\aapt.exe is invalid
When your are using Android with Csharp or when you are using Monoandroid you will be facing some some error related to aapt.exe missing or aapt.exe invalid . These are common error to Monoandroid developer that almost every one that uses Monoandroid will face .
So Today I decided to get the actual reason of this problem and I sit on my chair to find out the reason and possible...
Subscribe to:
Posts (Atom)
Followers
Popular Posts
-
Sqlite Database is the best way of providing portability...
-
Necessity is the advent of everything today while doing...
-
Quick Sort is a Sorting Algorithm based on Divide And...