android.widget.DigitalClock的实例源码

项目:HPlayer    文件PlayerActivity.java   
private void mFindViewById() {
    mCenterLayout = (CenterLayout) findViewById(R.id.vitamio_centerLayout);
    mVideoView = (VideoView) findViewById(R.id.vitamio_videoview);
    mloadingView = findViewById(R.id.player_loading_layout);
    mloadingInfo = (TextView) findViewById(R.id.loading_text);
    mVideoCenter = findViewById(R.id.player_center_iv);
    mVideoBottom = findViewById(R.id.player_bottom_layout);
    mVideoPlayPause = (ImageView) findViewById(R.id.player_play_iv);
    mCurrentTime = (TextView) findViewById(R.id.player_current_time);
    mTotalTime = (TextView) findViewById(R.id.player_total_time);
    mSeekBar = (SeekBar) findViewById(R.id.player_seekbar);
    mVideoShot = (ImageView) findViewById(R.id.video_shot);
    mOrientationChange = (ImageView) findViewById(R.id.orientation_change);
    mVideoTop = findViewById(R.id.player_top_bar);
    mBack = findViewById(R.id.player_back);
    mName = (TextView) findViewById(R.id.player_name);
    mDLNA = findViewById(R.id.dlna_devices);
    mDigitalClock = (DigitalClock) findViewById(R.id.clock);
    mBatteryView = (BatteryView) findViewById(R.id.battery_view);
}
项目:AndrosignClient    文件display.java   
@SuppressLint("CutPasteId")
private void defineGUI() {
    weatherLayOut = (RelativeLayout) findViewById(R.id.weatherContainer);
    RSSTV = (TextView) findViewById(R.id.RSSTV);
    weatherTV = (TextView) findViewById(R.id.weatherTV);
    wv = (WebView) findViewById(R.id.webView1);
    forecastTV = (TextView) findViewById(R.id.forecastTV);
    iv = (ImageView) findViewById(R.id.imageView1);
    iv2 = (ImageView) findViewById(R.id.imageView2);
    iv3 = (ImageView) findViewById(R.id.weatherIV);
    digClock = (DigitalClock) findViewById(R.id.digitalClock);
}

相关文章

买水果
比较全面的redis工具类
gson 反序列化到多态子类
java 版本的 mb_strwidth
JAVA 反转字符串的最快方法,大概比StringBuffer.reverse()性...
com.google.gson.internal.bind.ArrayTypeAdapter的实例源码...