Skip to content

Commit 9bea0bd

Browse files
committed
Reorder finals to be at top of class
1 parent 90ef55a commit 9bea0bd

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

app/src/main/java/protect/videotranscoder/activity/MainActivity.java

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,10 @@
5050

5151
public class MainActivity extends AppCompatActivity
5252
{
53-
private static final int REQUEST_TAKE_GALLERY_VIDEO = 100;
54-
private VideoView videoView;
55-
private CrystalRangeSeekbar rangeSeekBar;
56-
private Timer videoTimer = null;
57-
private ProgressDialog progressDialog;
58-
private Uri selectedVideoUri;
5953
private static final String TAG = "VideoTranscoder";
60-
private TextView tvLeft, tvRight;
61-
private String filePath;
62-
private int durationMs;
54+
55+
private static final int REQUEST_TAKE_GALLERY_VIDEO = 100;
56+
private static final int READ_WRITE_PERMISSION_REQUEST = 1;
6357

6458
final List<Integer> BASIC_SETTINGS_IDS = Collections.unmodifiableList(Arrays.asList(
6559
R.id.basicSettingsText,
@@ -89,7 +83,15 @@ public class MainActivity extends AppCompatActivity
8983
R.id.audioChannelContainer,
9084
R.id.audioChannelContainerDivider));
9185

92-
private static final int READ_WRITE_PERMISSION_REQUEST = 1;
86+
private VideoView videoView;
87+
private CrystalRangeSeekbar rangeSeekBar;
88+
private Timer videoTimer = null;
89+
private ProgressDialog progressDialog;
90+
private Uri selectedVideoUri;
91+
92+
private TextView tvLeft, tvRight;
93+
private String filePath;
94+
private int durationMs;
9395

9496
@Override
9597
protected void onCreate(Bundle savedInstanceState)

0 commit comments

Comments
 (0)