ads

Affichage des articles dont le libellé est send. Afficher tous les articles
Affichage des articles dont le libellé est send. Afficher tous les articles

lundi 21 septembre 2015

[APP][2.3+] Korean Sharing Apps - Send Message in Korean and learn Korean



Korean Sharing apps has provided a feature for user so that user who does not know Korean can also send messages in Korean to your friend(s).
Now this feature supports whatapp, line and kakao talk.
There are three categories which allow user to send messages in korean such as basic sentences, greeting and love. It may help you to know or learn more korean.

The following are the korean sentences you can send.
(Basic Sentences) - Hello, I am happy to see you, Thank,What is your hobby?, My hobby is traveling, What are you doing?, Good Night ......
(Greeting) - Have a nice day, Happy birthday, ......
(Love) - I love you, I miss you ......

Apart from this, It also provides the Introduction to korean and its vowels and consonants.

You can download "Korean Sharing Apps" in Google Play Store.



vendredi 18 septembre 2015

Unable to Send data from One Activity to Another Activity



**FIRSTACTIVITY**

Code:


public class FirstMarks extends Activity {

    TextView tv_Subjects1, tv_Internal1, tv_External1;
    EditText et_Int_Eng, et_Int_M1, et_Int_MM, et_Int_Phy, et_Int_Chem, et_Int_Cp, et_Int_ElcsLab, et_Int_EpLab, et_Int_ItLab, et_Int_Draw;
    EditText et_Ext_Eng, et_Ext_M1, et_Ext_MM, et_Ext_Phy, et_Ext_Chem, et_Ext_Cp, et_Ext_ElcsLab, et_Ext_EpLab, et_Ext_ItLab, et_Ext_Draw;
    Button btn_Cal1;
    int IEng, IM1, IMM, IPhy, IChem, ICp, IElcsLab, IItLab, IEpLab, IDraw;
    int EEng, EM1, EMM, EPhy, EChem, ECp, EElcsLab, EItLab, EEpLab, EDraw;
    int ITotal1 =0, ETotal1 =0, Total1 =0;
    float Percentage1=0;
    String STotal1=" ", SPercentage1=" ";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.marks_1);

        //SETTING FONT.
        Typeface mytypeface = Typeface.createFromAsset(getAssets(), "font.ttf");

        //INITIALISING VIEWS.
        //INITIALISING TEXT VIEWS.
        tv_Subjects1 = (TextView) findViewById(R.id.tv_Subject1);
        tv_Internal1 = (TextView) findViewById(R.id.tv_Internal1);
        tv_External1 = (TextView) findViewById(R.id.tv_External1);
        //INITIALISING EDIT TEXT.
        //INTERNAL
        et_Int_Eng = (EditText) findViewById(R.id.et_Int_Eng);
        et_Int_M1 = (EditText) findViewById(R.id.et_Int_M1);
        et_Int_MM = (EditText) findViewById(R.id.et_Int_MM);
        et_Int_Phy = (EditText) findViewById(R.id.et_Int_Phy);
        et_Int_Chem = (EditText) findViewById(R.id.et_Int_Chem);
        et_Int_Cp = (EditText) findViewById(R.id.et_Int_Cp);
        et_Int_ElcsLab = (EditText) findViewById(R.id.et_Int_ElcsLab);
        et_Int_EpLab = (EditText) findViewById(R.id.et_Int_EpLab);
        et_Int_ItLab = (EditText) findViewById(R.id.et_Int_ItLab);
        et_Int_Draw = (EditText) findViewById(R.id.et_Ext_Draw);
        //EXTERNAL
        et_Ext_Eng = (EditText) findViewById(R.id.et_Ext_Eng);
        et_Ext_M1 = (EditText) findViewById(R.id.et_Ext_M1);
        et_Ext_MM = (EditText) findViewById(R.id.et_Ext_MM);
        et_Ext_Phy = (EditText) findViewById(R.id.et_Ext_Phy);
        et_Ext_Chem = (EditText) findViewById(R.id.et_Ext_Chem);
        et_Ext_Cp = (EditText) findViewById(R.id.et_Ext_Cp);
        et_Ext_ElcsLab = (EditText) findViewById(R.id.et_Ext_ElcsLab);
        et_Ext_EpLab = (EditText) findViewById(R.id.et_Ext_EpLab);
        et_Ext_ItLab = (EditText) findViewById(R.id.et_Ext_ItLab);
        et_Ext_Draw = (EditText) findViewById(R.id.et_Ext_Draw);
        //INITIALISING BUTTON
        btn_Cal1 = (Button) findViewById(R.id.btn_Cal1);

        //INITIALISING FONT.
        tv_Subjects1.setTypeface(mytypeface);
        tv_Internal1.setTypeface(mytypeface);
        tv_External1.setTypeface(mytypeface);
        btn_Cal1.setTypeface(mytypeface);

        //GETTING VALUES FROM EDIT TEXT.
        //ENGLISH.
        try {
            IEng = getInt(et_Int_Eng);
            EEng = getInt(et_Ext_Eng);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a ENGLISH Number");
        }

        //M1.
        try {
            IM1 = getInt(et_Int_M1);
            EM1 = getInt(et_Ext_M1);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a M1 Number");
        }
        //MM.
        try {
            IMM = getInt(et_Int_MM);
            EMM = getInt(et_Ext_MM);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a MM Number");
        }

        //PHYSICS.
        try {
            IPhy = getInt(et_Int_Phy);
            EPhy = getInt(et_Ext_Phy);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a PHYSICS Number");
        }

        //CHEMISTRY
        try {
            IChem = getInt(et_Int_Chem);
            EChem = getInt(et_Ext_Chem);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a CHEMISTRY Number");
        }

        //CP.
        try {
            ICp = getInt(et_Int_Cp);
            ECp = getInt(et_Ext_Cp);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a CP Number");
        }

        //DRAWING.
        try {
            IDraw = getInt(et_Int_Draw);
            EDraw = getInt(et_Ext_Draw);
        } catch (NumberFormatException e) {
            Log.i("Log", "Not a DRAW Number");
        }

        //ELCS LAB.
        try{
            IElcsLab = getInt(et_Int_ElcsLab);
            EElcsLab = getInt(et_Ext_ElcsLab);

        }catch (NumberFormatException e){
            Log.i("Log", "Not a ELCS Number");
        }

        //EP/EC LAB.
        try{
            IEpLab = getInt(et_Int_EpLab);
            EEpLab= getInt(et_Ext_EpLab);

        }catch (NumberFormatException e){
            Log.i("Log", "Not a EP LAB Number");
        }

        //IT LAB.
        try{
            IItLab = getInt(et_Int_ItLab);
            EItLab = getInt(et_Ext_ItLab);

        }catch (NumberFormatException e){
            Log.i("Log", "Not a ITLAB Number");
        }



        //TOTALING ALL SUBJECTS
        //TOTALING INTERNAL MARKS.
        ITotal1 = (IEng + IM1 + IMM + IPhy + IChem + ICp + IElcsLab + IEpLab + IItLab + IDraw);

        //TOTALING EXTERNAL MARKS.
        ETotal1 = (EEng + EM1 + EMM + EPhy + EChem + ECp + EElcsLab + EEpLab + EItLab + EDraw);

        //TOTALING INTERNAL & EXTERNAL MARKS.
        Total1 = (ITotal1 + ETotal1);

        //CONVERTING INT TOTAL1 INTO STRING.
        //STotal1 = String.valueOf(Total1);

        //PERCENTAGE CALCULATION.
        Percentage1 = (float) Total1 / 10;
        //SPercentage1 = String.valueOf(Percentage1);

        //WHEN BUTTON CALCULATE IS CLICKED.
        btn_Cal1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent i = new Intent(FirstMarks.this, FirstResult.class);
                Bundle bundle = new Bundle();
                bundle.putInt("res1", Total1);
                bundle.putFloat("per1", Percentage1);
                i.putExtras(bundle);
                startActivity(i);
                finish();

            }
        });


    }

    //FUNCTION TO GET TEXT FROM EDIT TEXT AND CONVERT INTO INTEGER.
    private int getInt(EditText et) throws NumberFormatException {
        return Integer.valueOf(et.getText().toString());
    }
}


**SECOND ACTIVITY**

Code:


public class FirstResult extends Activity {

    EditText et_Total1,et_Percentage1;
    Button btn_Exit1;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.result_first);

        //INITIALISING VIEWS.
        et_Total1 = (EditText) findViewById(R.id.et_Total1);
        et_Percentage1 = (EditText) findViewById(R.id.et_Percentage1);
        btn_Exit1 = (Button) findViewById(R.id.btn_Exit1);

        //GETTING DATA FROM PREVIOUS ACTIVITY.
        Bundle b = getIntent().getExtras();
        int res1 = b.getInt("res1", 0);
        float per1 = b.getFloat("per1", 0);

      //CONVERTING TO STRING.
        String sres1 = String.valueOf(res1);
        String sper1 = String.valueOf(per1);

        //SETTING RESULTS.
        et_Total1.setText(sres1);
        et_Percentage1.setText(sper1);

        //WHEN EXIT IS CLICKED.
        btn_Exit1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                finish();
                System.exit(0);
          }
        });


    }
}





Can't send SMS Messages (t-mobile)



Hello,

I Can't send SMS messages. I can reveive them. I read on a other forum that it could be caused by the Lollipop 5.1 version.
Does someone knows more about it How can I Solve the Problem.

thx in advance

Ro3lz (The Netherlands)



mardi 15 septembre 2015

S4 SCH-i545 Can't send messages on 4g



I recently switched carriers. From Verizon, I went to T-Mobile. As expected, I'm already having issues. I can RECEIVE texts, but cannot send them on 4G LTE (only when I unexpectedly get "H+"). I can also access the internet. I have contacted T-Mobile, but honestly, they don't seem to care about my issue. I already manually changed the APN. The only thing I can think of is that my phone is currently on Lollipop, which is not yet supported by T-Mobile. Could this be the root of all this? Any help would be appreciated.

Sent from my SCH-I545 using XDA Free mobile app



lundi 14 septembre 2015

MOTO G XT1033 can't send or receive SMS



I have a Moto G 1st Gen Dual Sim (XT1032). I tried to convert it to XT1032 GPE but I think I failed. After that I flashed the following ROM
http://forum.xda-developers.com/moto...oject-t3060704

But in this ROM I am unable to send or receive any SMS. I installed CM12.1, but the problem persists. I have also tried to flash Lollipop Stock ROM for Moto G but It fails every-time. I am currently on the AOSP based ROM. Any solutions for this?



Help Needed Urgently With Xiaomi Mi 4i Fastboot ROM. Can someone send me one?



Hi XDA people! I am very new here and I created an account solely for the purpose of asking any kind stranger out here if you can send me one of your Global Fastboot ROMs for the Xiaomi Mi 4i? Any stable version would do. If you have the latest, i'd prefer that one. I recently installed an OTA update and the phone is now stuck in bootloop and I can't get the recovery mode to work. PLUS, I have a REALLY SLOW internet connection and I can't download any files from Xiaomi's server. Could you please send me one of your FASTBOOT ROMS via Google Drive? I would VERY MUCH APPRECIATE IT SO MUCH! Thank you! Here is my email:

immanuelim14@gmail.com

THANK YOU SO MUCH TO ANY KIND FOLK OUT HERE WHO'D HELP ME OUT!



Help Needed Urgently With Xiaomi Mi 4i Fastboot ROM. Can someone send me one?



Hi XDA people! I am very new here and I created an account solely for the purpose of asking any kind stranger out here if you can send me one of your Global Fastboot ROMs for the Xiaomi Mi 4i? Any stable version would do. If you have the latest, i'd prefer that one. I recently installed an OTA update and the phone is now stuck in bootloop and I can't get the recovery mode to work. PLUS, I have a REALLY SLOW internet connection and I can't download any files from Xiaomi's server. Could you please send me one via Google Drive? I would VERY MUCH APPRECIATE IT SO MUCH! Thank you! Here is my email:

immanuelim14@gmail.com

THANK YOU SO MUCH TO ANY KIND FOLK OUT HERE WHO'D HELP ME OUT!



Can't Send MMS?



I can't seem to send MMS at all. Regardless of which app I use, be it stock, google or other messaging, or if I have wifi on or off, MMS just does not send. I'm on firmware 2.19.40.22, rooted , unlocked and all that jazz.

Any ideas what I can do to fix this? Thanks.



vendredi 11 septembre 2015

Text message send lag?????



Hey I was curious if anyone is having the same issue I am on my rooted note 5. So pretty much been sending sms really late to people. I'm using Google message because I hate Samsung messgening client. Is the normal?



samedi 5 septembre 2015

why whatsapp can't send video file more than 9 MB?



hi all gurus,

I have Huawei Honor 4C and Huawei G610, i can receive video files through Whatsapp upto 16MB but can't send file size more than 9 MB :( ....
can somebody help me to overcome this problem as Whatsapp limit is 16MB.

please guide me.

regards.



jeudi 3 septembre 2015

note cannot send text or m as keep calls



I have an iPhone 5s att. I bought a note 5 to replace it. I put in the Sim card from the iPhone but cannot Sen or receive text, I can make and receive calls for about ten minutes then all of a sudden the 4G signal is gone.. now all I can do is make emergency calls. Can anyone help me? Do I need to create a custom apn?



samedi 29 août 2015

Cannot send SMS



I have an unlocked VS985 using T-Mobile and I recently flashed to the newest Skydragon rom. I can't seem to send SMS but I can receive them. I'm thinking the SMS settings may be incorrect but I cannot find the place to set it. The service center option is missing from the Messages -> Settings -> Text messages menu and *#*#4636#*#* doesn't do anything. Is there any other way to check/change it?



jeudi 27 août 2015

Can you send me a link of a recovery file of lenovo ideataba3000-h



guys can you give me a link of a recovery file not recovery.img something bad happen when i install a Samsung GT-P5100 lolipop version and i need a recovery file pls can i have the link of a recovery file pls:good: