ad728

Saturday, December 31, 2016

Facebook Color Code

Facebook Color Code Note: Facebook Color can only added via FB Lite and seen in FB Lite only.  fg=ffff0600 FOR RED fg=b0ffd700 FOR GOLDEN fg=b0000000 FOR BLACK fg=b0ff7f00 FOR ORANGE fg=b0ffff00 FOR YELLOW fg=b0ff00ff FOR LIGHT PINK fg=b0ff007f FOR DARK PINK fg=b0ff0000 FOR REDDISH PINK fg=b0800000 FOR BROWN fg=b0ffc0cb FOR LIGHT...
Share:

Thursday, December 15, 2016

AIDE Tutorial - 17 Check Box

AIDE Tutorial - 17 Check Box Watch the video below and try yourselfMain.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <CheckBox android:onClick="aaa" android:id="@+id/one" android:text="Phone" android:layout_width="fill_parent" android:layout_height="wrap_content"...
Share:

Tuesday, December 13, 2016

AIDE Tutorial - 8 Toast Gravity

AIDE Tutorial - 8 Toast Gravity  Add a button on XML <Button         android:onClick="Click1"         android:text="Click Me"         android:layout_width="wrap_content"         android:layout_height="wrap_content"...
Share:

Sunday, December 11, 2016

AIDE Tutorial - 6 Button

AIDE Tutorial - 6 Button Watch the below video 🤗 Normal Button This is the example of normal button. <Button android:text="Android" android:layout_width="wrap_content" android:layout_height="wrap_content"/> Image button This is the example of image button. In this image button i have choosen the ic_launcher i.e. auto generated android icon...
Share:

Friday, December 9, 2016

AIDE Tutorial - 9 Internet Button

AIDE Tutorial - 9 Internet Button Define a button in main.xml <Button         android:onClick="Click1"         android:text="Click Me"         android:layout_width="wrap_content"         android:layout_height="wrap_content"...
Share:

Wednesday, December 7, 2016

AIDE Tutorial - 7 Toast Button

AIDE Tutorial - 7 Toast ButtonToast Button will help to appear toast when the button is clicked. In this app, we add onClick method to the button whenever the button is clicked a toast message will appear.         To show toast we will use a normal Button. Add a button on XMLFirst of all add a button. Lets add a normal button. ...
Share:

Tuesday, November 29, 2016

How to change Android App icon ?

How to change Android App icon on AIDE? First choose the picture which you want to put as an icon of the App. Then copy or move the picture or image to the Storage/App Project/App name/app/src/main/res/drawable. You will get only drawable-hdpi, drawable-mdpi, drawable-xhdpi and drawable-xxhdpi but not drawable. Just create a drawable folder and paste...
Share:

Sunday, November 27, 2016

Why my Android App icon does not change?

Frequently Asked Questions (FAQs) Why my Android App icon does not change? Ans: This may happens mainly due to these reasons: a. Copied file in different directory You must create a drawable folder to add the icon in image in Storage/App Project/App name/app/src/main/res. inside the res folder, like shown below Copying in other folder needs changes...
Share:

Friday, November 25, 2016

Modern Filing

Modern Filing Flat or Horizontal FilingThen file is kept in flat position in flat or horizontal filing. Documents are chronologically filed in folder; the oldest document is at the bottom. Advantagea. It is simple to understand and easy to operate. No need to have special skills. b. It is economical. Files are cheap. c. It needs small space of office;...
Share:

Wednesday, November 23, 2016

Numerical Filing

Numerical Filing In numerical filing, all the paper, records are arranged on the basis of number. the number is provided to the file according to the received date of paper like 1, 2, 3. The index is used in this system. Advantagesa. The numbered file provides easy reference. Card index provides cross reference. b. It is suitable for big offices with...
Share:

Monday, November 21, 2016

Geographical Filing

Geographical Filing in Geographical filing all the papers, records are arranged according to the region, district, zones, etc which are also arranged in alphabetical or numerical filing system. Advantagesa. It is simple to understand and easy to operate. b. Needed files can be located fast with the help of index. c. It is suitable for offices having...
Share:

Saturday, November 19, 2016

International Organizations and their headquarters

Some International Organizations and their headquarters Lets learn about some international organization and where the headquarters are : 1. United Nation Organization (UNO)- New York 2. UNICEF - New York 3. UNESCO - Paris 4. UNIDO - Vienna 5. World Health Organization (WHO) - Geneva 6. UNFPA - New York 7. International Labour Organization (ILO)...
Share:

Saturday, November 5, 2016

The Magic of Words

Unit One : Stories of the Supernatural The Recurring Dream | A Story from England   The story starts with a description of Kimberly Clark, the protagonist of the story, who is twenty five years old with all qualities of a normal young woman. She is pretty, she loves to dance, and she has many friends and a good position in the office of a...
Share:

Thursday, November 3, 2016

Record management

Record management We know that record means the information in the form of written which are  used by an office for formulating plan and policies and perform so many activities. Management means 'manage',  'men' and 't' where t refers to tactfully. Record management means the management of written informations and records like progress report,...
Share:

Monday, October 10, 2016

AIDE Tutorial - 26 Simple Notification

Main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:gravity="center">     <Button android:onClick="show"         android:text="Click...
Share:

AIDE Tutorial - 26.3 In Progress Notification

Main.Xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:gravity="center">    <Button android:onClick="abc"         android:text="Download"        ...
Share:

AIDE Tutorial - 26.4 Expandable Notification

Main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:gravity="center">     <Button android:onClick="show"         android:text="Click...
Share:

AIDE Tutorial - 26.1 Updating Notification

Main.Xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:gravity="center">    <Button android:onClick="show"         android:text="Click...
Share:

AIDE Tutorial - 26.2 Multiple Notification

Main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:gravity="center">    <Button android:onClick="click"         android:text="Click...
Share:

AIDE Tutorial - 25 Search Dialog

Main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:orientation="vertical">    <SearchView android:id="@+id/mainSearchView"        ...
Share:

AIDE Tutorial 24 TabHost

Main xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:gravity="top">    <TabHost android:id="@+id/th" android:layout_width="fill_parent" android:layout_height="wrap_content"...
Share:

Monday, September 26, 2016

C Programming

Include Header File Section C program depends upon some header files for function definition that are used in program. Each header file by default is extended with .h. The header file should be included using # include directive as given here. Global Declaration This section declares some variables that are used in more than one function. These variables are...
Share:

Total Pageviews

Sponsor

Sponsor

ad300

Blog Archive