Hello i need some help I'm really new here and i don't know anything abot programming i wont to build an android app can you ... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Hello i need some help I'm really new here and i don't know anything abot programming i wont to build an android app can you ...

Hello i need some help I'm really new here and i don't know anything abot programming i wont to build an android app can you tell me How can i ???

11th Feb 2017, 11:19 PM
mahmoudboudal
7 Answers
+ 11
or use Xamarin with Visual Studio.
12th Feb 2017, 12:37 AM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
0
Hi, Mahmoud. Most of android development is java-based, so you can start with learn Java, and put an effort to understand the Object Oriented in Java.
11th Feb 2017, 11:40 PM
Abdillah Baraja
Abdillah Baraja - avatar
0
Hello, I can teach you some useful things. Look at the // in the code. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { //To write comments, put a // in front of what you want to write, like I'm doing here. (A comment is something you write that you don't want to interfere in the code. } } }
13th Feb 2017, 6:19 PM
Luke Hegelund
Luke Hegelund - avatar
0
When you start a new project, it will look like this: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { } } }
13th Feb 2017, 6:25 PM
Luke Hegelund
Luke Hegelund - avatar
0
When you code you need to start where the arrows are. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { ______________________ ______________________ <--- ______________________ <--- ______________________ <--- } } }
13th Feb 2017, 6:29 PM
Luke Hegelund
Luke Hegelund - avatar
0
To write something in your code that will show up when it's running, write this: Console.WriteLine("you can write anything you want in here") using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { Console.WriteLine("Like this"); } } }
13th Feb 2017, 6:36 PM
Luke Hegelund
Luke Hegelund - avatar
0
I hope I have helped! Bye.
13th Feb 2017, 6:37 PM
Luke Hegelund
Luke Hegelund - avatar