Page 287 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 287
+ status2 + "\n\n");
}
//지역정보 가져와서 data_RSS 변수에 저장해두기
//editer.setText(sBuffer.toString);
} catch (Exception e) {
Log.e("파싱 중 에러 발생", e.getMessage());
}
}
}
라. RSS
package com.example.jbts_22.clientsocket;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class RSS extends Activity implements View.OnClickListener{
TextView timer;
TextView editer;
Button btn_back;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.rss_layout);
timer = (TextView)findViewById(R.id.getTime);
//현재 시간을 알려주는 텍스트 뷰.
btn_back = (Button)findViewById(R.id.goBack);
//뒤로가기용 버튼
editer = (TextView)findViewById(R.id.editer);
//미세먼지 내용이 들어갈 텍스트 뷰.
- 280 -