Skip to main content

Posts

Showing posts from 2018

How to see deleted whatsapp messages on the phone

How to see deleted messages in mobile phone Kindly watch the video Keywords: how to see deleted whatsapp messages on iphone, how to read a deleted whatsapp message someone sent you, how to recover deleted whatsapp messages on samsung, how to restore deleted whatsapp messages without backup, this message was deleted, how to see deleted whatsapp messages on android, how to see deleted messages, recover whatsapp messages online,

Using cardview in your app for list

USING CARDVIEW IN YOUR ANDROID APP Code: <?xml version="1.0" encoding="utf-8"?> <ScrollView android:layout_width="match_parent"     android:layout_height="match_parent"     xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:app="http://schemas.android.com/apk/res-auto">     <LinearLayout         android:layout_width="match_parent"         android:layout_height="match_parent"         android:background="#D0FF09"         android:orientation="vertical">         <android.support.v7.widget.CardView android:layout_width="match_parent"             android:layout_height="200dp"             android:layout_marginTop="10dp"             android:layout_margin="5dp"             app:cardCornerRadius="25dp"             >             <LinearLayout                 android:layout_wi

Using custom font for your app in android studio

activity_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout 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"     android:orientation="vertical"     tools:context="androidapp.puruworld.customfont.MainActivity">     <TextView         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:fontFamily="@font/dancingscriptregular"         android:text="Hello World!"         android:textSize="50sp"         android:layout_gravity="center"         app:layout_constraintBottom_toBottomOf="parent"         app:layout_constraintLeft_toLeftOf="parent&qu

Andro Smasher

ANDRO SMASHER Can you score higher than the video let's see who can stay till last in this game. Click on the download link below to get your game from play store

House expense app

"SAVE MONEY IS A NEW WAY TO HAVE MONEY" This is an app made for those who want to manage their expenses, income maintains records for their household expenses.Let's not talk a lot and see what it actually does with the help of the screenshots given below. GRAPHICAL NOTATION:  Graphical visualization is more clear than text visualization.So, here we represent your daily income and expense for your app. Navigation Drawer:  Navigate easily through our beautiful menu Entering information is now more easy with digitalization Easily see your product expenditure in your list of expenditure with the help of search or wanna delete it delete by id Sharing is caring : Wanna share our app. No need of using third-party app directly share within the app  Wanna download it Let us know your thoughts in the comment section below: Keywords: house expenses list monthly house expenses monthly expenses list sample house expe

Videos

Using tap target view library in android How to put alert dialog in your android app How to download road rash 2 for pc Make text float into air How to change image background 0 seeds in torrent and still you can download Make your own web browser for mobile MP3 Player core java(not UI) Access blocked sites in INDIA How to download from extratorrent while it has been shutdown completely GET UNLIMITED LIKES ON FACEBOOK Make your own TicTacToe game in android Make your own Music Player in core java Make your own TicTacToe game in core java Wifi problem solved in kali linux How to play PSP games on pc How to increase the screen resolution of kali linux in vmware How to increase the screen resolution of kali linux in vmware How to

Make your own tic-tac-toe game on Android

Now stay tuned with the new videos.Just click the button mention below of youtube: App Code for MainActivity.java: import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.Toast; public class MainActivity extends AppCompatActivity implements View.OnClickListener { int chance=0;     Button btn1,btn2,btn3,btn4,btn5,btn6,btn7,btn8,btn9,reset;     @Override     protected void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContentView(R.layout.activity_main);     btn1=(Button)findViewById(R.id.btn1);     btn2=(Button)findViewById(R.id.btn2);     btn3=(Button)findViewById(R.id.btn3);     btn4=(Button)findViewById(R.id.btn4);     btn5=(Button)findViewById(R.id.btn5);     btn6=(Button)findViewById(R.id.btn6);     btn7=(Button)findViewById(R.id.btn7);     btn8=(Button)findViewById(R.id.btn8);  

Part 1: Make your own game in Python

Python Code[Just Copy paste the code and you are done] : # Import a library of functions called 'pygame' import pygame # Initialize the game engine pygame.init() gamedisplay = pygame.display.set_mode((700, 500)) pygame.display.set_caption("Cool Game") clock=pygame.time.Clock() crashed=False while not crashed: for event in pygame.event.get(): if event.type == pygame.QUIT: crashed= True print(event) pygame.display.update() clock.tick(60) pygame.quit() quit() In command prompt: pip install pygame Keywords : puruworldofficial python game engine 2d, python game library, python game development, pygame game, python game creator, python game programming tutorial for beginners, pygame tutorial, python based games, Game development in python, build your own game in python with pygame, build your own game in python, make your own game in python, invent your own game in python, how to make a game in python for beginners, python game programmi

Part 3 || Gaming in python || pygame

python game code: # Import a library of functions called 'pygame' import pygame # Initialize the game engine pygame.init() display_width=800 display_height=600 img_width=100 black=(0,0,0) white=(255,255,255) red=(255,0,0) gamedisplay = pygame.display.set_mode((display_width,display_height)) pygame.display.set_caption("Cool Game") clock=pygame.time.Clock() carImg= pygame.image.load('car.png') def car(x,y): gamedisplay.blit(carImg,(x,y)) def gamerender(): x=(display_width * 0.45) y=(display_height * 0.65) x_change=0 crashed=False while not crashed: for event in pygame.event.get(): if event.type == pygame.QUIT: crashed= True if event.type == pygame.KEYDOWN: if event.key==pygame.K_LEFT: x_change=-5 if event.key==pygame.K_RIGHT: x_change=5 if event.type==pygame.KEYUP: if event.key==pygame.K_LEFT or event.key==pygame.K_RIGHT: x_change=0 x+=x_change gamedi

Part 2 : Making a game in python || pygame

In this video, you will learn - Changing background of the game - Displaying image in the game - putting an image in a definite position Stay tuned -Stay subscribed for other parts of the tutorial.Meanwhile like, share and comment your queries. python code: # Import a library of functions called 'pygame' import pygame # Initialize the game engine pygame.init() display_width=800 display_height=600 black=(0,0,0) white=(255,255,255) red=(255,0,0) gamedisplay = pygame.display.set_mode((display_width,display_height)) pygame.display.set_caption("Cool Game") clock=pygame.time.Clock() crashed=False carImg= pygame.image.load('car.png') def car(x,y): gamedisplay.blit(carImg,(x,y)) x=(display_width * 0.45) y=(display_height * 0.65) while not crashed: for event in pygame.event.get(): if event.type == pygame.QUIT: crashed= True gamedisplay.fill(red) #print (event) car(x,y) pygame.display.update() clock.tick(60) pygame.quit() quit() Ke