display opposite length unit (feet <-> meter) on touch and hold gesture (see #12)

master
y20k 2018-04-26 14:48:53 +02:00
parent a415b33fdc
commit a5292bfc0f
2 changed files with 25 additions and 24 deletions

View File

@ -243,22 +243,23 @@ public class MainActivityTrackFragment extends Fragment implements AdapterView.O
mStatisticsSheetBehavior = BottomSheetBehavior.from(mStatisticsSheet); mStatisticsSheetBehavior = BottomSheetBehavior.from(mStatisticsSheet);
mStatisticsSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED); mStatisticsSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mStatisticsSheetBehavior.setBottomSheetCallback(getStatisticsSheetCallback()); mStatisticsSheetBehavior.setBottomSheetCallback(getStatisticsSheetCallback());
mStatisticsView.setOnClickListener(new View.OnClickListener() { // todo attach listener to title and (i)icon
@Override // mStatisticsView.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) { // @Override
if (mStatisticsSheetBehavior.getState() == BottomSheetBehavior.STATE_EXPANDED) { // public void onClick(View view) {
mStatisticsSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED); // if (mStatisticsSheetBehavior.getState() == BottomSheetBehavior.STATE_EXPANDED) {
} else { // mStatisticsSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mStatisticsSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED); // } else {
} // mStatisticsSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
} // }
}); // }
// });
// attach listener for taps on elevation views // attach listener for taps on elevation views
attachTapListenerToElevationViews(); attachTapListenerToElevationViews();
// // attach listener for taps on statistics // TODO uncomment // attach listener for taps on statistics // TODO uncomment
// attachTapListenerToStatisticsSheet(); attachTapListenerToStatisticsSheet();
return mRootView; return mRootView;
} }
@ -605,20 +606,18 @@ public class MainActivityTrackFragment extends Fragment implements AdapterView.O
mStatisticsView.setOnTouchListener(new View.OnTouchListener() { mStatisticsView.setOnTouchListener(new View.OnTouchListener() {
@Override @Override
public boolean onTouch(View v, MotionEvent event) { public boolean onTouch(View v, MotionEvent event) {
if(event.getAction() == MotionEvent.ACTION_DOWN){ // todo describe
if (mStatisticsSheetBehavior.getState() == BottomSheetBehavior.STATE_EXPANDED) {
if (event.getAction() == MotionEvent.ACTION_DOWN){
displayOppositeLengthUnits(); displayOppositeLengthUnits();
return true; return true;
} else if (event.getAction() == MotionEvent.ACTION_UP) { } else if (event.getAction() == MotionEvent.ACTION_UP) {
displayCurrentLengthUnits(); displayCurrentLengthUnits();
if (mStatisticsSheetBehavior.getState() == BottomSheetBehavior.STATE_EXPANDED) {
mStatisticsSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
} else {
mStatisticsSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
}
return true; return true;
} }
} else {
displayCurrentLengthUnits();
}
return false; return false;
} }
}); });

View File

@ -2,6 +2,8 @@
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/statistics_view" android:id="@+id/statistics_view"
android:clickable="true"
android:focusable="true"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content"> android:layout_height="wrap_content">