Tuesday, 20 February 2018

Dial Call Apk


အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။

<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="47dp"
android:ems="10"
android:inputType="phone">
</EditText>

<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+ideditText1"
android:layout_centerHorizontal="true"
android:layout_marginTop="32dp"
android:text="Dial Call"/>

src >>> MainActivity.java ကိုဖြင္​့ပါ။ ​ေအာက္​က code ကို ထည္​့ပါ။

import(အပိုင္​း)

import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;

private Button button;
private EditText etPhoneno;

Source(အပိုင္​း)
button = (Button) findViewById(R.id.button);
etPhoneno = (EditText) findViewById(R.id.editText);
// add button listener
button.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
String phnum = etPhoneno.getText().toString();
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + phnum));
startActivity(callIntent);
}
});

AndroidManifest.xml(အပိုင္​း)

  <uses-permission android:name="android.permission.CALL_PHONE" />

အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

Calling Apk


အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ျပီးရင္ ​src >>> MainActivity.java ကိုဖြင္​့ပါ။ ​ေအာက္​က code ကို ထည္​့ပါ။

import (အပိုင္​း)

import android.content.Intent;
import android.net.Uri;

Source (အပိုင္​း)

startActivity(new Intent(Intent.ACTION_CALL,Uri.parse("tel:012-234-5678")));

ဖုန္​းနံပါတ္​​ ​ေနရာမွာ​ ​ေျပာင္​းလဲ အသုံးျပဳႏိုင္​သည္​။


AndroidManifest.xml(အပိုင္​း)


<uses-permission android:name="android.permission.CALL_PHONE"/>

အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

Website View Apk


Website View Apk

အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။


<WebView
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>

src >>> MainActivity.java ကိုဖြင္​့ပါ။ ​ေအာက္​က code ကို ထည္​့ပါ။
import(အပိုင္​း)

import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;

private WebView webView;

Source (အပိုင္​း)

webView = (WebView) findViewById(R.id.webView1);
webView.setWebViewClient(new Callback());
WebSettings webSettings = webView.getSettings();
webSettings.setBuiltInZoomControls(true);
webView.loadUrl("http://myanmarandroiddev.blogspot.com");
}private class Callback extends WebViewClient {
public boolean shouldOverrideUrlLoading(WebView view,
String url) {
return (false);
}

AndroidManifest.xml (အပိုင္​း)

<uses-permission android:name="android.permission.INTERNET" />
   

အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

Website/Blog Url Apk(Button Click)


အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။
<Button
android:layout_height="wrap_content"
android:text="Button"
android:layout_width="wrap_content"
android:id="@+id/button"/>

src >>> MainActivity.java ကိုဖြင္​့ပါ။ ​ေအာက္​က code ကို ထည္​့ပါ။
(import)အပိုင္း

import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.widget.Button;
import android.view.View;
import android.view.View.OnClickListener;

Button button;

Source(အပိုင္​း)
addListenerOnButton(); }
public void addListenerOnButton() {
button = (Button) findViewById(R.id.button);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://myanmarandroiddev.blogspot.com/?m=1"));startActivity(browserIntent);}});

အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

Website/Blog Url Apk


Website/Blog Url Apk

အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ src >>> MainActivity.java ကိုဖြင္​့ပါ။ ​ေအာက္​က code ကို ထည္​့ပါ။
(import)အပိုင္​း

import android.content.Intent;
import android.net.Uri;

(Source)အပိုင္​း

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://myanmarandroiddev.blogspot.com")));

အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

EditText Apk


EditText Apk စတင္​ဖန္​တီးပါ​ေတာ့မယ္​။

အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။


<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

ၿပီးရင္​ runလိုက္​ပါ။MyApp တခုရ႐ွိပါမည္​။ 

အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

DigitalClock Apk




DigitalClock Apk တခု စတင္​ဖန္​တီးပါ​မယ္​။

အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။



<DigitalClock
android:id="@+id/digitalClock1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

ၿပီးရင္​ run လိုက္​ပါ။MyApp တခု ရ႐ွိပါမည္​။

အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

AnalogClock apk

AnalogClock Apk တခု ဖန္​တီး လုပ္​​ေဆာင္​မယ္​။
အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။
<AnalogClock
android:id="@+id/analogClock1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
ၿပီးရင္​ run လိုက္​ပါ။MyApp တခု ရ႐ွိပါမည္​။
အဆင္​​ေျပပါ​ေစ။
​ေရးသားသူ =​ေဇယ်ာလင္​း

​ေရးသားသူ =​ေဇယ်ာလင္​း

Button Apk


Button Apk တခု ဖန္​တီးလုပ္​​ေဆာင္​မယ္​။

အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။


<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
  android:layout_height="wrap_content"
android:text="Button" />

ၿပီးရင္​ run လိုက္​ပါ။MyApp တခု ရ႐ွိပါမည္​။

အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

TextView Apk


Text View Apk စတင​္​​ေရးပါ​ေတာ့မယ္​
အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။



<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
androi:layout_height="wrap_content"
android:text="My Name is Zay Yar Lin" />
  
ၿပီးရင္​ runလိုက္​ပါ။MyApp တခုရ႐ွိပါမည္​။

  


အဆင္​​ေျပပါ​ေစ။

​ေရးသားသူ =​ေဇယ်ာလင္​း

Android App ထဲတြင္​႐ွိ​ေသာ folder ​ေတြရဲ႕ လုပ္​​ေဆာင္​ခ်က္​မ်ား


ပထမဆုံးအ​ေနျဖင္​့ My Files(or)File Manager ထဲသို႔ ဝင္​ပါ။ ၿပီးရင္​ SD Card >>>AppProjects ထဲသို႔ဝင္​ပါ။ AIDE Apk run ထား​ေသာ MyApp ႐ွိပါမယ္​။MyApp ထဲက အ​ေရးႀကီးတဲ့ ဖိုင္​ အ​ေၾကာင္​း​ေတြကို အနည္​းငယ္​႐ွင္​းျပပါမယ္​။

1.bin
bin ဖိုင္​ထဲတြင္ ​ကိုယ္​တိုင္​ဖန္​တီးထား​ေသာ apk တခု႐ွိပါမယ္​။

2.res
resဖိုင္​ထဲတြင္​ Layout ဖိုင္​ပါမယ္​။Layout ဖိုင္က ​apk တခုရဲ႕ မ်က္နွာျပင္ ဒီဇိုင္း​​​​ႏွွင့္ပတ္သတ္တာ​ေ​​တြကို လုပ္​ေ​ဆာင္​ရမွာ ျဖစ္​ပါသည္​။

3.scr
Scr ဖိုင္​က​ေတာ့ Android App ​ေရးရာတြင္​ အသုံးျပဳတဲ့ Java Coding ​ေတြ ထည္​့​သြင္​​းရမွာ ျဖစ္​ပါသည္​။

4.AndroidManifest.xml
AndroidManifest.xml ဖိုင္​ထဲတြင္​ Android App ရဲ႕ version​ ႏွင္​့ permission code တြင္​ ပါဝင္​ပါသည္​။

Android Apk ဖန္​တီးရာတြင္​ အသုံးျပဳရ​ေသာ ဖိုင္​အ​ေၾကာင္​း ​ေတြကို ​AIDE Apk ​ေတြ ပုံႏွင္​့တကြ ႐ွင္​းျပ​ေပးပါမယ္​။

အရင္​ဆံုး AIDE Apk ကိုဝင္​ပါ။

Android Application ထဲမွာ ပါဝင္​​ေသာ folder ​ေတြရဲ႕ အ​ေၾကာင္​းကို ႐ွင္​းျပသြားတာပါ။ အမွားအယြင္​းမ်ားပါရင္​ ​ေဝဖန္​​ေထာက္​ျပ အၾကဳံျပဳႏိုင္​ပါတယ္​။

​ေရးသားသူ =​ေဇယ်ာလင္​း

AIDE APK အသုံးျပဳနည္​း

AIDE Apk အသုံးျပဳပုံ
Package Name ​ေနရာမွာ ကိုယ္​အဆင္​​ေျပသလို ျပင္​​ေရးလို႔ရပါတယ္။ျပီးရင္ Create ကိုႏွိပ္ပါ။​​​​​
Run လိုက္​ပါ။
MyApp တခုရ႐ွိပါမည္​။
AIDE Apk အသုံးျပဳပုံ ျဖစ္​ပါသည္​။
​ေရးသားသူ =​ေဇယ်ာလင္​း

​ေရးသားသူ =​ေဇယ်ာလင္​း

Android ဖုန္​းထဲတြင္​ Android App တခုဖန္​တီးျခင္​း


ကိုယ္ပိုင္ ​​Android App တခုဖန္​တီးဖို႔ လိုအပ္​ခ်က္​​ေတြ အမ်ားႀကီး ႐ွိပါတယ္​။ အခု​ေျပာမွာက ကိုယ္​ပိုင္​ Android Phone,Table ​ေပၚမွာ apkတခု ဖန္​တီး​ဖို႔ လမ္​းၫြန္​ျပသသြားမွာပါ။ Computer ​ေပၚမွာ ​ေရးတဲ့ Android Apk ​ေလာက္​ အဆင္​့ျမင္​့​ေပ​မယ္​့ လက္​​ေတြ႔ Android Phone ​ေပၚမွာ သုံး​ေနတဲ့ Apk အ​ေသးစာ​း​ေလာက္​​ေတာ့ ​ဖန္​တီးလို႔ရပါတယ္​။

လိုအပ္​တာ​ေတြက
1.Android Phone(or)Table
2.AIDE Apk
3.App UI Graphic Apk
4.AIDE Premium Key Apk
တို႔ျဖစ္​ပါသည္​။
  
1.Android Phone(or)Table
           Apk တခု​ဖန္​တီးဖို႔ Android Phone(or)Table ကို အသုံးျပဳရပါမည္​။

2.AIDE Apk
          Android Apk တခုဖန္​တီးဖို႔ AIDE Apk ကို အသုံးျပဳ၍ ​ေရးသားသြားမွာပါ။

3.App UI Graphic Apk
            AIDE တြင္​ ​ေရးထားတဲ့ apkကို design ျပဳလုပ္​ဖို႔ အသုံးျပဳပါမည္​။

4.AIDE Premium Apk
          AIDE တြင္​ apk တခု​ေရးရာတြင္​ AIDE Premium Apk ကို install လုပ္​ထားရန္​ ျဖစ္​ပါသည္​။

လိုအပ္​​ေသာ Apk ကို ​ေအာက္​တြင္​ ​ေဒါင္​းလုပ္​ဆြဲပါ။

AIDE Apk
 Download 

App UI Graphic Apk
 Download

AIDE Premium Apk
 Download

​ေရးသားသူ=​ေဇယ်ာလင္​း