viewing paste Unknown #6532 | Java

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
package com.example.com.omegle.test;
 
import org.nikki.omegle.Omegle;
import org.nikki.omegle.core.OmegleException;
import org.nikki.omegle.core.OmegleMode;
import org.nikki.omegle.core.OmegleSession;
import org.nikki.omegle.event.OmegleEventAdaptor;
 
import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
 
public class MainActivity extends Activity {
 
    TextView txt;
    Button m_btn;
    EditText m_edt;
    OmegleSession session;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
        m_btn = (Button)findViewById(R.id.button);
        m_edt = (EditText)findViewById(R.id.type);
        m_btn.setOnClickListener(new View.OnClickListener() {
            
            @Override
            public void onClick(View v) {
            
                sendIt(v);
                
            }
        });
        m_btn.setClickable(false);
        OmegleChat om=new OmegleChat();
        om.execute();
    }
    
    
 
    protected void sendIt(View v) 
    {
    
        txt.append("You: "+m_edt.getText().toString());
        m_edt.setText("");
        
        
    }
    
    
 
 
 
    private class OmegleChat extends AsyncTask<Void, Void, Void> {
 
            
       
        @Override
        protected void onPreExecute() {
            
            txt=(TextView)findViewById(R.id.omegle);
            txt.append("Omegele Connection Started... \n");
        
        }
 
        @Override
        protected void onProgressUpdate(Void... values) {
       
        }
        @Override
        
        protected Void doInBackground(Void... arg0) {
            // TODO Auto-generated method stub
            OmgeleChatOn();
            return null;
        }
        
         @Override
            protected void onPostExecute(Void result) {
    
            
         }
  }
    
    public void OmgeleChatOn()
    {
        
        Omegle omegle = new Omegle();
        try {
            System.out.println("Opening session...");
            
            session = omegle.openSession(OmegleMode.NORMAL, new OmegleEventAdaptor() {
                
                @Override
                public void chatWaiting(OmegleSession session) {
                    System.out.println("Waiting for chat...");
                }
 
                
                @Override
                public void chatConnected(OmegleSession session) {
                    System.out.println("You are now talking to a random stranger!");
                }
 
                @Override
                public void chatMessage(final OmegleSession session, final String message) {
                    System.out.println("Stranger: " + message);
                    runOnUiThread(new Runnable() {
                        
                        @Override
                        public void run() {
 
                            txt.append("Stranger:"+message+"\n");
                            m_btn.setClickable(true);
                            
                        }
                    });
                    
                }
 
                @Override
                public void messageSent(final OmegleSession session, final String string) {
                    System.out.println("You: " + string);
                  }
 
                @Override
                public void strangerDisconnected(OmegleSession session) {
                    System.out.println("Stranger disconnected, goodbye!");
                    //System.exit(0);
                }
 
                @Override
                public void omegleError(OmegleSession session, String string) {
                    System.out.println("ERROR! " + string);
                    System.exit(1);
                }
                
                
                
            });
            
            //HERE I WANT TO USE session.send(msg_from_edit_text) HOW TO DO THAT AS I HAVE A FUNCTION sendIt(v) above this method
            
                
                
        } catch (OmegleException e) {
            e.printStackTrace();
        }
        
        
 
    }
 
 
 
    
}
 
Viewed 746 times, submitted by Guest.