Translate

နည္းပညာဆုိဒ္မ်ား

Wednesday, January 11, 2017

android programming ကိုေလ့လာၾကမယ္
လုိအပ္တဲ့ IDE ေတြကေတာ့
1.sdk
2.eclipse
ဆုိရင္ရပါပီ
internet connection မေကာင္းတဲ့ေနရာေတြမွာ api platform ေတြကို offline down ပီး ျပဴလုပ္ရပါမယ္
internet connection ေကာင္းရင္ ေတာ့ တုိက္ရုိက္ version ျမင့္ႏုိင္ပါတယ္
ပထမဦးဆုံး android အေၾကာင္းအရင္သိေအာင္ ဒါေလးကို အရင္ဖတ္ၾကည့္ပါ.......
What is Android?
Android is a software package and linux based operating system for mobile devices such as tablet computers and smartphones.

It is developed by Google and later the OHA (Open Handset Alliance). Java language is mainly used to write the android code even though other languages can be used.

The goal of android project is to create a successful real-world product that improves the mobile experience for end users.
What is Open Handset Alliance (OHA) ?
It's a consortium of 84 companies such as google, samsung, AKM, synaptics, KDDI, Garmin, Teleca,Ebay, Intel etc.

It was established on 5th November, 2007, led by Google. It is commited to advance open standards, provide services and deploy handsets using the Android Plateform.
Features of Android

There are many advantages of android. They are as follows:

    It is open-source.
    Anyone can customize the Android Platform.
    There are a lot of mobile applications that can be choosen by the consumer.
    It provides many interesting features like weather details, opening screen, live RSS (Really Simple Syndication) feeds etc.
    It provides support for messaging services(SMS and MMS), web browser, storage (SQLite), connectivity (GSM, CDMA, Blue Tooth, Wi-Fi etc.), media, handset layout etc.

Categories of Android applications
what is android

There are many android applications in the market. The top categories are:

    Entertainment
    Tools
    Communication
    Productivity
    Personalization
    Music and Audio
    Social
    Media and Video
    Travel and Local etc.


What is Android?

what is android Android is a software package and linux based operating system for mobile devices such as tablet computers and smartphones.
It is developed by Google and later the OHA (Open Handset Alliance). Java language is mainly used to write the android code even though other languages can be used.
The goal of android project is to create a successful real-world product that improves the mobile experience for end users.

What is Open Handset Alliance (OHA) ?

oha It's a consortium of 84 companies such as google, samsung, AKM, synaptics, KDDI, Garmin, Teleca, Ebay, Intel etc.
It was established on 5th November, 2007, led by Google. It is commited to advance open standards, provide services and deploy handsets using the Android Plateform.

Features of Android

There are many advantages of android. They are as follows:
  • It is open-source.
  • Anyone can customize the Android Platform.
  • There are a lot of mobile applications that can be choosen by the consumer.
  • It provides many interesting features like weather details, opening screen, live RSS (Really Simple Syndication) feeds etc.
  • It provides support for messaging services(SMS and MMS), web browser, storage (SQLite), connectivity (GSM, CDMA, Blue Tooth, Wi-Fi etc.), media, handset layout etc.

Categories of Android applications

what is android There are many android applications in the market. The top categories are:
  • Entertainment
  • Tools
  • Communication
  • Productivity
  • Personalization
  • Music and Audio
  • Social
  • Media and Video
  • Travel and Local etc.
- See more at: file:///D:/Knowledge/www.javatpoint.com/www.javatpoint.com/android-what-where-and-why.html#sthash.fOlULpgh.dpuf

What is Android?

what is android Android is a software package and linux based operating system for mobile devices such as tablet computers and smartphones.
It is developed by Google and later the OHA (Open Handset Alliance). Java language is mainly used to write the android code even though other languages can be used.
The goal of android project is to create a successful real-world product that improves the mobile experience for end users.

What is Open Handset Alliance (OHA) ?

oha It's a consortium of 84 companies such as google, samsung, AKM, synaptics, KDDI, Garmin, Teleca, Ebay, Intel etc.
It was established on 5th November, 2007, led by Google. It is commited to advance open standards, provide services and deploy handsets using the Android Plateform.

Features of Android

There are many advantages of android. They are as follows:
  • It is open-source.
  • Anyone can customize the Android Platform.
  • There are a lot of mobile applications that can be choosen by the consumer.
  • It provides many interesting features like weather details, opening screen, live RSS (Really Simple Syndication) feeds etc.
  • It provides support for messaging services(SMS and MMS), web browser, storage (SQLite), connectivity (GSM, CDMA, Blue Tooth, Wi-Fi etc.), media, handset layout etc.

Categories of Android applications

what is android There are many android applications in the market. The top categories are:
  • Entertainment
  • Tools
  • Communication
  • Productivity
  • Personalization
  • Music and Audio
  • Social
  • Media and Video
  • Travel and Local etc.
- See more at: file:///D:/Knowledge/www.javatpoint.com/www.javatpoint.com/android-what-where-and-why.html#sthash.fOlULpgh.dpuf

Monday, August 18, 2014

အာရုိ..............
V-Model တဲ့ဗ်ဳိ႕............

Sunday, November 3, 2013

java programming learning.............

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.io.File;
import java.io.IOException;
public class colorchooser extends JApplet implements ActionListener
{   JFileChooser ch=new JFileChooser();
    JPanel jpanel=new JPanel();
    JButton jbutton,b2;
    JTextField txt;
    public void init()
    {   txt=new JTextField(20);
        jbutton=new JButton("Click here to change colors.");
        b2=new JButton("Click here to openBox");
        b2.addActionListener(this);
        b2.setToolTipText("This is a button to go opendialogBox");
        jbutton.setToolTipText("This is a button to go colorDialog");
        jbutton.addActionListener(this);
        jpanel.add(jbutton);
        jpanel.add(b2);
        jpanel.add(txt);
        getContentPane().add(jpanel);
    }
public void actionPerformed(ActionEvent e)
{   
    if(e.getSource()==jbutton){
        Runtime r=Runtime.getRuntime();
        Process p=null;
        Color color=JColorChooser.showDialog(colorchooser.this,"Select a new color...",Color.orange);
        try {
            p=r.exec("notepad.exe");
        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
       

jpanel.setBackground(color);}
    if(e.getSource()==b2){
ch.showOpenDialog(this);
File f=ch.getSelectedFile();
txt.setText(f.toString());
txt.setBackground(Color.red);}

   
   

}
public void showStatus(String f){
   
}
}

   


Wednesday, April 24, 2013

To My All Friends

သူငယ္ခ်င္း အားလုံး က်န္းမာ ေပ်ာ္ရႊင္ျပီး အစစ အရာရာ အဆင္ေျပပါေစ