1
I have to notify an action that occurs within the site , I have the following code that. It appears in a texview and wanted to notify enves of sending the name to textview. Textview txv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
txv = (TextView) findViewById(R.id.hello);
new RequestTask().execute("http://sites.ecomp.uefs.br/perta/");
}
class RequestTask extends AsyncTask<String, String, String>{
@Override
protected String doInBackground(String... uri) {
String text = null;
try {
// pega o codigo html de um site
Document doc = Jsoup.connect(uri[0]).get();
// pega um elemento do codigo
Elements newsHeadlines = doc.select("#sites-header-title");
// pega o texto dentro do codigo
text = newsHeadlines.text();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return text;
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
if(result != null){
txv.setText(result);
}else{
txv.setText("FALHA!");
}
}
}
Notify in what sense?! A push notification?!
– viana
Type I log in to a game page and if you have points available to pick up notifies ,
– renan silva das neves
Because when you have points available a different div appears on this page
– renan silva das neves
The answer I gave will probably help you if it’s just a notification in the status bar. Instead of textView, you put the notification. It’s something extremely simple.
– viana