Skip to main content

Featured

Game Development Tutorials In Android

Game Development Tutorials In Android Hi Guys,                 We are shortly started Game Development Tutorials in Android Studio. So everyone supports me and share this blogs to your friends. Guys, At this time everyone is freely available to source code and we are provide a video for step by step game developments. you are learn free and feel free to support us. Guys, if you have any question to me, so feel free to comment us. I will try to answer all the question as long as possible.                                                     Thank's                                                                          ...

The First Hello World Program in Android

Tutorials For Android Apps


Go to new project : Choose Name Whatever You want 

Choose Version : ------- Whatever You want 



Go to the activity_main.xml page

<?xml version="1.0" encoding="utf-8"?><android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    tools:context="com.example.vashnodevi.simpleapp.MainActivity">
    <TextView        android:textAlignment="center"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="Welcome Friends, This is Our First Hello World! Program In Android"        app:layout_constraintBottom_toBottomOf="parent"        app:layout_constraintLeft_toLeftOf="parent"        app:layout_constraintRight_toRightOf="parent"        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

Go to Build and Run First Android Project



If this information is important to you , and you want to , I will continue writing some more details of programming language, so click on the advertising, available on this page. This is motivate me for writing some more useful program and Tips, Thank's .

Comments