eonLogix

eonLogix IT Training, Software Development & Mobile Solution. Our

22/04/2014

Taw Win Myanmar Hotel (Budget hotel ) is your top choice to choose to stay in Mandalay which is located in business hub, centre of Mandalay.

Taw Win Myanmar Hotel (Budget hotel ) is your top choice to choose to stay in Mandalay which is located in business hub, centre of Mandalay.

06/06/2013

The webshop is a place where you can purchase everythings you need in one place. We are offering the best prize of the items for our customers...

Welcome to The Webshop, the online shopping market of Thailand. The Webshop is a place for every shopaholic. The Webshop provide every items from Thailand with reasonable price. The Webshop will sure satisfy you and it is the most cost-effective way.

06/06/2013

Welcome our value customer from Gold Yadanar hotel feel as your home!

Local business

ဝန္ထမ္းအလိုရိွသည္။
08/04/2013

ဝန္ထမ္းအလိုရိွသည္။

eonLogix Training မှ သင်ကြားပေးနေသော သင်တန်းများ
10/02/2013

eonLogix Training မှ သင်ကြားပေးနေသော သင်တန်းများ

24/12/2012

★ ° . .. ☾ °☆  . * ● ¸ .   ★ ° :.  . • ○ ° ★  .  * .☾   °  . ● .    °☆  ¸. ● .  ★  ★ ° ☾ ☆ ¸. ¸ ★ ° . .. ☆☼ MERRY CHRISTMAS AND A HAPPY NEW YEAR ☼  . * ● ¸ .   ★ ° :.  . • ○ ° ★  .  *  °☆  ¸. ● .  ★  ★ ° ☾ ☆ ¸. ¸  ★ ° . .    . ☾ °☆  . * ● ¸ .   ★ ° :.  . • ○ ° ★  .  * .   ☾   .   °  . ● .    °☆  ¸. ● .  ★  ★ ° ☾ ☆ ¸. ¸  ★ ° . .` `^ . ☾ °☆  . * ●
° _██_*。*./♫ \ .˛* .˛.*.★* *★ 。*
˛. (´• ̮•)*˛°*/.♫.♫\*˛.* ˛_Π_____. * ˛*°( . • . ) ˛°./• '♫ ' •\.˛*./______/~\ *. ˛*.。˛* ˛. *。
*(...'•'.. ) *˛╬╬╬╬╬|田田 |門|╬╬╬╬ .
˜¯`´¯˜"*°•♥•°*"˜¯` ´¯˜"*°•♥•°*"˜¯

22/11/2012

Just sharing our source codes of MMAS Zawgyi Changer!

package dev.speedysoft.fontchanger;

import java.io.DataOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import android.app.Activity;
import android.content.Intent;
import android.graphics.Typeface;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

public class frmMain extends Activity {
//private File sysFile;
//private String folderPath;
//private String filePath;
//private File sysDir;
//private File fontFolderPath;
//private String fontFilePath;
//private File fontFile;
private Button btn;
private frmMain mContext;
private Runtime r;
private Process p;
private Typeface face;
private Button btnSony;
private TextView txtTitle;
private File fBold;
private File fRegular;
private File fRoboBold;
private File fRoboRegular;
private File fDSF;
private TextView txtCredit1;

private int OK_ONLY = 2001;
private int YESNO = 2002;
private int SDK_INT;


protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if(requestCode==OK_ONLY){
//finish();
}
else if(requestCode==YESNO){
if(resultCode==RESULT_OK){
finish();
}
}
}



public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
Intent i = new Intent(mContext, frmShowConfirmDialog.class);
Bundle b = new Bundle();
b.putString("Title", "ထြက္မည္");
b.putString("Message", "ထြက္မွာေသခ်ာပါသလား?");
i.putExtras(b);
startActivityForResult(i, YESNO);
}
return false;
}



public void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mContext = this;

Toast.makeText(mContext, "www.myanmarmobileapp.com", Toast.LENGTH_LONG).show();

face=Typeface.createFromAsset(getAssets(), "dsf2.ttf");

txtTitle = (TextView)findViewById(R.id.txtTitle);
txtTitle.setTypeface(face);

txtCredit1 = (TextView)findViewById(R.id.lblCredit1);
txtCredit1.setTypeface(face);

if(getWindowManager().getDefaultDisplay().getHeight()>500){
txtTitle.setTextSize(20);
txtCredit1.setTextSize(16);
}

File sdcard = new File("/sdcard/");

if(!sdcard.exists()){

Intent i = new Intent(mContext, frmShowOKDialog.class);
Bundle b = new Bundle();
b.putString("Title", "သတိေပးခ်က္");
b.putString("Message", "SD Card ထည့္ေပးပါ။");
i.putExtras(b);
startActivityForResult(i, OK_ONLY);

/*
AlertDialog.Builder ald = new AlertDialog.Builder(mContext)
.setTitle("Warning!")
.setMessage("Please insert SD card to process!")
.setPositiveButton("OK", new DialogInterface.OnClickListener() {

public void onClick(DialogInterface dialog, int which) {
try{
finish();
}
catch(Exception e){

}
}
})
.setOnCancelListener(new DialogInterface.OnCancelListener() {

public void onCancel(DialogInterface dialog) {
try{
finish();
}
catch(Exception e){

}
}
});

ald.show();
*/

}

File dirTmp = new File("/sdcard/data/fonts/");
if(!dirTmp.exists()){
dirTmp.mkdirs();
}

try {

copyBold("");
copyRegular("");
copyThree("");
copySony("");

} catch (IOException e2) {
e2.printStackTrace();
}



fBold=new File("/system/fonts/DroidSans-Bold.ttf");
fRegular=new File("/system/fonts/DroidSans.ttf");
fRoboBold = new File("/system/fonts/Roboto-Bold.ttf");
fRoboRegular = new File("/system/fonts/Roboto-Regular.ttf");
fDSF=new File("/system/fonts/DroidSansFallback.ttf");


try {
r = Runtime.getRuntime();
p = r.exec("su");
} catch (IOException e1) {
e1.printStackTrace();
}

btn = (Button)findViewById(R.id.btn);
btn.setTypeface(face);
btn.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {

try{
final DataOutputStream outs=new DataOutputStream(p.getOutputStream());

if(fDSF.exists()){
String cmd="mount -o rw,remount /dev/block/stl9 /system";
outs.writeBytes(cmd+"\n");
//cmd = "dd if=/system/fonts/DroidSansFallback.ttf of=/sdcard/data/fonts/DroidSansFallback.ttf";
//cmd = "mv /system/fonts/DroidSansFallback.ttf DroidSansFallback-.ttf /system/fonts/DroidSansFallback.ttf DroidSansFallback.ttf";
cmd = "rm /system/fonts/DroidSansFallback.ttf";
outs.writeBytes(cmd+"\n");
cmd = "dd if=/sdcard/data/fonts/dsf3.ttf of=/system/fonts/DroidSansFallback.ttf";
outs.writeBytes(cmd+"\n");
}


if(SDK_INT>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> OPTION MENU - START OPTION MENU - END

MMAM တြင္ Download အမ်ားဆံုး Application 5 ခု ကို ေဖာ္ျပေပးလိုက္ပါသည္။Congratulation The Voice Myanmar App!!!
16/09/2012

MMAM တြင္ Download အမ်ားဆံုး Application 5 ခု ကို ေဖာ္ျပေပးလိုက္ပါသည္။
Congratulation The Voice Myanmar App!!!

Android အတြက္ online ေပၚမွ Application မ်ားကို တိုက္ရိုက္ ရွာေဖြျပီး download လုပ္ႏိုင္တဲ့ Application တစ္ခုျဖစ္ပါတယ္။ L...
01/09/2012

Android အတြက္ online ေပၚမွ Application မ်ားကို တိုက္ရိုက္ ရွာေဖြျပီး download လုပ္ႏိုင္တဲ့ Application တစ္ခုျဖစ္ပါတယ္။ Latest Software မ်ားကိုလည္း စံုလင္ေ၀ဆာစြာ ထည့္သြင္းေပးထားပါတယ္။ ယခု Version မွာေတာ့ Single Download ကို သာ ခြင့္ျပဳေပးထားပါတယ္။ ေနာက္ Version မ်ားမွာေတာ့ Multi Download ရေအာင္ ျပဳလုပ္သြားမွာျဖစ္ပါတယ္..။

Official Site for eonLogix Development Solution.

Address

81 Street, Between 85 X 85 Street. Near Maharmyatmuni Pagoda
Mandalay

Alerts

Be the first to know and let us send you an email when eonLogix posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share