answersLogoWhite

0

In Android Development the src folder is where all you put your main Java code

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you create android obb folder?

Go to sd card/Android and create a new folder and rename it to obb.


How do you put musics in android?

You can put music on an android by simply connecting your phone to a PC. Then copy paste MP3 or MP4 music to the mail folder.


What is the function of folder?

To hold anything


Pointer version of string function strcpy?

char* strcpy(const char* src, char* dst) { char* tmp = dst; while ((*dst++ = *src++) != '\0'); return tmp; }


How do you write a user define function of strcpy?

char* u_strcpy (char* dest, const char* src) { char* temp = dest; while ((*dest++ = *src++) != '\0'); return temp; }


How do you upload an image in HTML code?

First add image (.jpg, .png, .gif) into 'images' folder in main root of the site. In HTML code add <img alt="word or phrase describing image" height="162" src="path where image is coming from images/img.gif" width="917" />


What does src for ShockAhpi do?

In computer programming, src usually means 'source code'. The src contains the source code for ShockAhpi.


When was SRC Records created?

SRC Records was created in 2002.


How do you create folder with c plus plus?

Use function mkdir.


Android OS on an iPhone?

even if you manage to do it, it wont function properly


Why is there a sound when opening a folder on galaxy s3?

Because Samsung wanted it to be like that. Samsung and Android make all the decisions on the official OS


What is syntax of memcpy?

memcpy function is used to copy memory area. Syntax ------ void *memcpy(void *dest, const void *src, size_t n); *dest is a destination string. *src is a source string. n is a number of characters to be copied from source string. Example: #include #include main() { char src[]="Hello World"; char des[10]; memcpy(des,src,5); printf("des:%s\n",des); //It will contain the string "Hello". }