Beispiel #1
0
 public void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
   //        this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
   //                WindowManager.LayoutParams.FLAG_FULLSCREEN);
   //        // 隐去标题栏(程序的名字)
   this.requestWindowFeature(Window.FEATURE_NO_TITLE);
   setContentView(R.layout.gupiao_layout);
   //        listView = (ListView) findViewById(R.id.listview);
   //
   //        adapter = new ListSharesAdapter(this, datas);
   //        listView.setAdapter(adapter);,tv_1
   tv_price = (TextView) findViewById(R.id.tv_price);
   tv_name = (TextView) findViewById(R.id.tv_name);
   tv_1 = (TextView) findViewById(R.id.tv_1);
   linear = (LinearLayout) findViewById(R.id.linear);
   drowLine = (DrowLine) findViewById(R.id.drowLine);
   drowFive = (DrowFive) findViewById(R.id.drowFive);
   // 绑定AIDL服务
   Intent intent = new Intent();
   intent.setClass(ShareActivity.this, CatchService.class);
   bindService(intent, serviceConnection, Context.BIND_AUTO_CREATE);
   startService(intent);
   bt_stop = (Button) findViewById(R.id.bt_stop);
   bt_stop.setOnClickListener(this);
   findViewById(R.id.bt_set).setOnClickListener(this);
 }