android.widget.DigitalClock Java Examples
The following examples show how to use
android.widget.DigitalClock.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PlayerActivity.java From HPlayer with Apache License 2.0 | 6 votes |
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); }
Example #2
Source File: DSL.java From anvil with MIT License | 4 votes |
public static BaseDSL.ViewClassResult digitalClock() { return BaseDSL.v(DigitalClock.class); }
Example #3
Source File: DSL.java From anvil with MIT License | 4 votes |
public static Void digitalClock(Anvil.Renderable r) { return BaseDSL.v(DigitalClock.class, r); }
Example #4
Source File: DSL.java From anvil with MIT License | 4 votes |
public static BaseDSL.ViewClassResult digitalClock() { return BaseDSL.v(DigitalClock.class); }
Example #5
Source File: DSL.java From anvil with MIT License | 4 votes |
public static Void digitalClock(Anvil.Renderable r) { return BaseDSL.v(DigitalClock.class, r); }