Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by Gurdeep ( 13 years ago )
final private static int DIALOG_TICKET= 1;
String id, user, balance;
DataBean appstate;
TextView Uvaid,mobile;
ListView lstvw;
String mobno;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
ListAdapter adaptor=createAdapter();
setListAdapter(adaptor);
//
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
}
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
}
public ListAdapter createAdapter(){
ArrayList<String> list=new ArrayList<String>();
try {
list=CustomHttpClient.executeTrans("");
Toast.makeText(getApplicationContext(), id , Toast.LENGTH_LONG);
}
catch(Exception e){
}
ListAdapter adapter= new ArrayAdapter<String>(this,R.layout.transection, list);
return adapter;
}
Revise this Paste