Software Guide InFo

Tuesday, 20 February 2018









Gmail account ဖြင့္နည္း ဖုန္းနံပါတ္ပါ ေက်ာ္နည္း


ဒီနည္းက gm acc ဖြင့္တိုင္းဖုန္းနံပါတ္
ေတြ ေတာင္းလို႕ စိတ္ညစ္ေနရင္ ေအာက္
က developement settings app
ေလးကိုေဒါင္းျပီး အဲထဲကေန က်ေနာ္
ျပထားတဲ႕ အတိုင္း ဝင္ဖြင့္ျကည့္ပါ skip
ဆိုတာ ပါလာလိမ့္မယ္ ဖုန္းေတာ္ေတာ္
မ်ားမ်ား ရပါတယ္ သိသူေက်ာ္သြားပါ
မသိေသးသူမ်ားအတြက္ရည္ရြယ္ပါသည္

dev settings ေဆာ့ဝဲကိုဒီမွာေဒါင္းပါ

အသံုးလိုရင္ Share ထားနိုင္ပါတယ္
Crd: Pyae Sone Phyo
#ေဆာ့ဝဲလမ္းညႊန္




















at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Gmail ဆိုင္ရာ

Text Left To Right Moving Apk

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


<TextView
android:id="@+id/mylinenews"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="5"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="Text moving Text moving Text moving Text moving Text moving Text moving"
android:textColor="#FF0F00"/>


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


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

Share
at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Android Application ေရးသားနည္း

Android From Fitst Screen To Second Screen Activity

အ​ေပၚမွာ ​ေျပာထားတဲ့အတိုင္​း AIDE Apk စတင္​ဖြင္​့ပါ။ၿပီးရင္​ res>>>>layout>>>>main.xmlကိုဖြင္​့ပါ။
​ေအာက္​က code ကို ထည္​့ပါ။
<Button
        android:id="@+id/button1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Click me to another screen" />
main2.xml ဆိုၿပီး ဖိုင္အသစ္​ ဖြင္​့​ေပးရမယ္​။
​ေအာက္​တြင္​ ၾကည္​့ရန္
​
TextView
android:layout_height="wrap_content"
android:text="AIDE"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"/>
Add new xml file here ကိုႏိွပ္​ပါ။
src >>> MainActivity.java ကိုဖြင္​့ပါ။ ​ေအာက္​က code ကို ထည္​့ပါ။
import(အပိုင္​း)
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.widget.Button;
import android.view.View;
import android.view.View.OnClickListener;
Button button;
Source(အပုိင္​း)
addListenerOnButton();
}
public void addListenerOnButton() {
final Context context = this;
button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent intent = new Intent(context, MainActivity2.class);
                startActivity(intent);   }});
MainActivity2.java ဖိုင္​အသစ္​ဖြင္​့မည္​။
​ေအာက္​တြင္ ၾကည္​့ရန္​
Add new Class here ကိုႏိွပ္​ပါ။
MainActivity2.java တြင္​ ​ေအာက္​က Code ထည္​့ရန္​
import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;
import android.os.Bundle;
import android.widget.Button;
public class MainActivity2 extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main2);
}
}
AndroidManifest.xml(အပိုင္​း)
  <activity
            android:label="@string/app_name"
            android:name=".App2Activity" >
        </activity>
အဆင္​​ေျပပါ​ေစ။
​ေရးသားသူ =​ေဇယ်ာလင္​း

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

Share
at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Android Application ေရးသားနည္း

Web Search Apk


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

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

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



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

import(အပိုင္​း)

import android.app.SearchManager;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.EditText;


Source (အပိုင္​း)

findViewById(R.id.button).setOnClickListener(new HandleClick());
    }
    private class HandleClick implements OnClickListener{
public void onClick(View arg0) {
String searchFor=((EditText) findViewById(R.id.editText1)).getText().toString();
Intent viewSearch = new Intent(Intent.ACTION_WEB_SEARCH);
viewSearch.putExtra(SearchManager.QUERY, searchFor);
startActivity(viewSearch);
}



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

​ေရးသားသူ =​ေဇယ်ာလင္​း
Share
at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Android Application ေရးသားနည္း

Toast Apk


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

import(အပိုင္​း)

import android.widget.Toast;


Source(အပိုင္​း)

Toast.makeText(getApplicationContext(), "Dev;Zay Yar Lin", Toast.LENGTH_SHORT).show();

မွတ္​ခ်က္​=Dev;Zay Yar Lin ​ေနရာမွာ သင္​ႀကိဳက္​ႏွစ္​သက္​ရာ ထည္​့လို႔ရပါတယ္​။




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

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

Share
at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Android Application ေရးသားနည္း

Balance Check Apk(Button Click)


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

<Button
android:id="@+id/buttonCall"
android:layout_height="wrap_content"
style="?android:attr/buttonBarButtonStyle"
android:text="ေဘစစ္ရန္"
android:layout_width="wrap_content"/>


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

import(အပိုင္​း)
import android.content.Context;

import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

final Context context = this;
private Button button;

Source(အပိုင္​း)

button = (Button) findViewById(R.id.buttonCall);
// add button listener
button.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
startActivity(new Intent("android.intent.action.CALL",Uri.parse("tel:*124" + Uri.encode("#"))));}});

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

<uses-permission android:name="android.permission.CALL_PHONE" />
   <uses-permission android:name="android.perပmission.READ_PHONE_STATE" />





မွတ္​ခ်က္​=(124 ​ေနရာမွာ သင္​ဖုန္​းလိုင္​းကဒ္​ အ​ေပၚမူတည္​ၿပီး ​ေျပာင္​းလဲႏိုင္​ပါသည္​။)

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

​ေရးသားသူ =​ေဇယ်ာလင္​း
Share
at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Android Application ေရးသားနည္း

Balance Check Apk


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


    <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Development By Zay Yar Lin" />


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

import(အပိုင္​း)

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

Source(အပိုင္​း)

startActivity(new Intent("android.intent.action.CALL",Uri.parse("tel:*124" + Uri.encode("#"))));

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

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


မွတ္​ခ်က္​=(124 ​ေနရာမွာ သင္​ဖုန္​းလိုင္​းကဒ္​ အ​ေပၚမူတည္​ၿပီး ​ေျပာင္​းလဲႏိုင္​ပါသည္​။)

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

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

Share
at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Android Application ေရးသားနည္း

Flashlight Apk (ဓာတ္​မီး)


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

<Button
      android:id="@+id/button"
      android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_centerVertical="true"
   android:layout_centerHorizontal="true"
        android:text="Torch" />




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

import(အပိုင္​း)

import android.content.Context;
import android.content.pm.PackageManager;
import android.hardware.Camera;
import android.hardware.Camera.Parameters;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;



//flag to detect flash is on or off
private boolean isLighOn = false;
private Camera camera;
   private Button button;
@Override
protected void onStop() {
super.onStop();
if (camera != null) {
camera.release();
}
}


Source(အပိုင္​း)


button = (Button) findViewById(R.id.button);
Context context = this;
PackageManager pm = context.getPackageManager();
// if device support camera?
if (!pm.hasSystemFeature(PackageManager.FEATURE_CAMERA)) {
Log.e("err", "Device has no camera!");
return;
}
camera = Camera.open();
final Parameters p = camera.getParameters();
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
if (isLighOn) {
Log.i("info", "torch is turn off!");
p.setFlashMode(Parameters.FLASH_MODE_OFF);
camera.setParameters(p);
camera.stopPreview();
isLighOn = false;
} else {
Log.i("info", "torch is turn on!");
p.setFlashMode(Parameters.FLASH_MODE_TORCH);
camera.setParameters(p);
camera.startPreview();
isLighOn = true;}}});




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


<uses-permission android:name="android.permission.CAMERA" />
    <uses-feature android:name="android.hardware.camera" />
   

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

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

Share
at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Android Application ေရးသားနည္း

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" />

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

​ေရးသားသူ =​ေဇယ်ာလင္​း
Share
at February 20, 2018 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Android Application ေရးသားနည္း
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

About Me

My photo
YE' HTUT
View my complete profile

Blog Archive

  • ▼  2018 (48)
    • ▼  July (2)
      • Android phone အတုအစစ္ခြဲနည္း မဂၤလာပါ ---  s...
      • Mobile Phone အတုအစစ္ခြဲနည္း
    • ►  April (1)
    • ►  March (6)
    • ►  February (38)
    • ►  January (1)
  • ►  2017 (102)
    • ►  October (25)
    • ►  September (18)
    • ►  August (27)
    • ►  July (32)

Labels

  • Android Application ေရးသားနည္း
  • Android Game
  • Android ဆိုင္ရာ
  • Apple App Stores ဆိုင္ရာ
  • Blogger ဆိုင္ရာ
  • Camera ဆိုင္ရာ
  • computer ဆိုင္​ရာ
  • Facebook ဆိုင္ရာ
  • Firmware တင္နည္း
  • Font ဆိုင္ရာ
  • Game ဆိုင္ရာ
  • Gmail Account
  • Gmail ဆိုင္ရာ
  • Hardware
  • Hardware နည္းပညာမ်ား
  • Lock ျဖဳတ္နည္းမ်ား
  • Phone Call ဆိုင္ရာ
  • Root
  • Rootမလုိပဲျမန္မာေဖာင့္သြင္းနည္း
  • Samsung ဆိုင္ရာ
  • Software or hardware
  • Tool
  • Viber ဆိုင္ရာ
  • virus ဆိုင္ရာ
  • Website Andorid APK အလြယ္ လုပ္နည္း
  • Xiaomi
  • စာအုပ္မ်ား
  • ဆိုင္ရာ
  • နည္းပညာ စာအုပ္မ်ား
  • နည္​းလမ္​းမ်ား

Report Abuse

test

ေဒါင္းေလာ့လင့္


glitter-graphics.com

Popular Posts

  • (no title)
  • (no title)
  • (no title)

Video of the Day

Video Example

Flickr Images

Video Of Day

Video Example

Labels

  • Android Application ေရးသားနည္း
  • Android Game
  • Android ဆိုင္ရာ
  • Apple App Stores ဆိုင္ရာ
  • Blogger ဆိုင္ရာ
  • Camera ဆိုင္ရာ
  • computer ဆိုင္​ရာ
  • Facebook ဆိုင္ရာ
  • Firmware တင္နည္း
  • Font ဆိုင္ရာ
  • Game ဆိုင္ရာ
  • Gmail Account
  • Gmail ဆိုင္ရာ
  • Hardware
  • Hardware နည္းပညာမ်ား
  • Lock ျဖဳတ္နည္းမ်ား
  • Phone Call ဆိုင္ရာ
  • Root
  • Rootမလုိပဲျမန္မာေဖာင့္သြင္းနည္း
  • Samsung ဆိုင္ရာ
  • Software or hardware
  • Tool
  • Viber ဆိုင္ရာ
  • virus ဆိုင္ရာ
  • Website Andorid APK အလြယ္ လုပ္နည္း
  • Xiaomi
  • စာအုပ္မ်ား
  • ဆိုင္ရာ
  • နည္းပညာ စာအုပ္မ်ား
  • နည္​းလမ္​းမ်ား

Video

Video Example

Find Us On Facebook

Sora Templates
Viber
▶Software��Guide❤InFo◀
  • မူလစာမ်က္ႏွာ
  • ဘာသာေရး
  • နည္းပညာစာအုပ္မ်ား
  • ဗဟုသုတ
  • ကဗ်ာ
  • >ဟာသ
  • ေဆာ့၀ဲလ္
  • ဆက္သြယ္ရန္





  • မဂၤလာပါခင္ဗ်ာ...နည္းပညာနွင့္ေဆာ့ဝဲလမ္းညႊန္မွစုစည္းမွုမွၾကိဳဆိုပါတယ္...ေဆာ့ဝဲနွင့္နည္းပညာစုစည္းမွုတြင္ တတ္သိေလ့လာထားတာေလးမ်ားကို ျပန္လည္မွ်ေ၀ေပးျခင္းျဖစ္ပါတယ္ခင္ဗ်ာ....လာေရာက္လည္ပတ္ၾကတ့ဲနည္းပညာညီအစ္ကိုသူငယ္ခ်င္းမ်ားလည္းကိုယ္စိတ္ႏွစ္ၿဖာရြွင္လန္းခ်မ္းေျမ့ပါေစခင္ဗ်ာ...


    Subscribe To

    Posts
    Atom
    Posts
    All Comments
    Atom
    All Comments

    Followers

    My Blog List

    ဘာသာစကား

    ျမန္မာစံေတာ္ခ်ိန္

    Time in Myanmar:

    ျမန္မာစံေတာ္ခ်ိန္

    Current local time in
    Myanmar

    y


    glitter-graphics.com

    glitter-graphics.com

    Search This Blog

    • Home

    Featured post

    Popular Posts

    • (no title)
      ဂိမ္​းပိုက္​ဆံခိုးနည္​း ျမန္မာမူျပဳထားတ့ဲ "ဂိမ္​းသူခိုး" APK မိမိ ​ေဆာ့​ေန​ေသာ ဂိမ္​းမ်ားကို ပိုက္​ဆံခိုးတ့ဲ နည္​းျဖစ္​ပါတယ္...
    • (no title)
      Facebook က Videos ေတြကို Software မသံုးဘဲ Download လုပ္နည္း......... Facebook က Videos ေတြကို Software မသုံးပဲဘယ္လုိ Download လုပ္မလဲ? ...
    • (no title)
      အင္​တာနက္​​ေဒတာအသံုးျပဳမႈကို ​ေလ်ာ့ခ်ေပးၿပီး ဖုန္းေဘ ကုန္က်မွု သက္သာ​ေစမည့္​ေဆာ့ဝဲ (5MB) က်ေနာ္တို႔ေတြ အင္တာနက္သံုးတဲ့အခါမွာ "ဖုန...
    Simple theme. Powered by Blogger.