public class MedicionFragment extends android.app.Fragment implements ViewFunctions.MedicionFunctions
Esta clase forma parte de la aplicacion TFG-Goniometer, desarrollada para el Trabajo de Fin de Grado - Grado en Ingenieria Informatica (Universidad de Valladolid)
Toolbar
,
AlertDialog
,
MedicionPresenter
Modifier and Type | Field and Description |
---|---|
(package private) MedicionPresenter |
presenter |
Constructor and Description |
---|
MedicionFragment() |
Modifier and Type | Method and Description |
---|---|
void |
displayResult(android.support.v7.app.AlertDialog dialog)
Metodo que simplemente muestra el AlertDialog que ha recibido como parametro.
|
android.view.View |
onCreateView(android.view.LayoutInflater inflater,
android.view.ViewGroup container,
android.os.Bundle savedInstanceState)
Metodo llamado para instanciar el Fragment con su layout asociada
(R.layout.medicion_fragment, en este caso).
|
void |
onDestroy()
Perform any final cleanup before an activity is destroyed.
|
void |
onPause()
Called as part of the fragment lifecycle when a fragment is going into the background, but
has not (yet) been killed.
|
void |
onResume()
Called as part of the fragment lifecycle when your fragment is ready to start interacting
with the user.
|
void |
setLecturaGoniometroText(java.lang.String lectura)
Metodo "setter" del parametro lecturaGoniometro de tipo TextView.
|
void |
setTamañoGoniometro(int tamañoGoniometro)
Metodo que se encarga de fijar el tamaño del goniometro en funcion del ancho de la
pantalla del dispositivo.
|
void |
setTamañoReiniciar(int tamañoReiniciar)
Metodo que se encarga de fijar el tamaño del boton "Reiniciar" en funcion del ancho de la
pantalla del dispositivo.
|
void |
startAnimation(android.view.animation.Animation animation)
Metodo que inicia la animacion sobre la View que refleja graficamente el
desplazamiento del dispositivo.
|
dump, equals, getActivity, getAllowEnterTransitionOverlap, getAllowReturnTransitionOverlap, getArguments, getChildFragmentManager, getContext, getEnterTransition, getExitTransition, getFragmentManager, getHost, getId, getLoaderManager, getParentFragment, getReenterTransition, getResources, getRetainInstance, getReturnTransition, getSharedElementEnterTransition, getSharedElementReturnTransition, getString, getString, getTag, getTargetFragment, getTargetRequestCode, getText, getUserVisibleHint, getView, hashCode, instantiate, instantiate, isAdded, isDetached, isHidden, isInLayout, isRemoving, isResumed, isVisible, onActivityCreated, onActivityResult, onAttach, onAttach, onAttachFragment, onConfigurationChanged, onContextItemSelected, onCreate, onCreateAnimator, onCreateContextMenu, onCreateOptionsMenu, onDestroyOptionsMenu, onDestroyView, onDetach, onHiddenChanged, onInflate, onInflate, onInflate, onLowMemory, onMultiWindowModeChanged, onOptionsItemSelected, onOptionsMenuClosed, onPictureInPictureModeChanged, onPrepareOptionsMenu, onRequestPermissionsResult, onSaveInstanceState, onStart, onStop, onTrimMemory, onViewCreated, onViewStateRestored, registerForContextMenu, requestPermissions, setAllowEnterTransitionOverlap, setAllowReturnTransitionOverlap, setArguments, setEnterSharedElementCallback, setEnterTransition, setExitSharedElementCallback, setExitTransition, setHasOptionsMenu, setInitialSavedState, setMenuVisibility, setReenterTransition, setRetainInstance, setReturnTransition, setSharedElementEnterTransition, setSharedElementReturnTransition, setTargetFragment, setUserVisibleHint, shouldShowRequestPermissionRationale, startActivity, startActivity, startActivityForResult, startActivityForResult, startIntentSenderForResult, toString, unregisterForContextMenu
@Inject MedicionPresenter presenter
@Nullable public android.view.View onCreateView(android.view.LayoutInflater inflater, @Nullable android.view.ViewGroup container, android.os.Bundle savedInstanceState)
onCreateView
in class android.app.Fragment
inflater
- The LayoutInflater object that can be used to inflate any view in the
fragment.container
- If non-null, this is the parent view that the fragment's UI should be
attached to. The fragment should not add the view itself, but this can be
used to generate the LayoutParams of the view.savedInstanceState
- If non-null, this fragment is being re-constructed from a previous
saved state as given here. Return the View for the fragment's UI,
or null.public void onResume()
onResume
in class android.app.Fragment
public void onPause()
onPause
in class android.app.Fragment
public void onDestroy()
onDestroy
in class android.app.Fragment
public void displayResult(android.support.v7.app.AlertDialog dialog)
displayResult
in interface ViewFunctions.MedicionFunctions
dialog
- AlertDialog a mostrarpublic void setLecturaGoniometroText(java.lang.String lectura)
setLecturaGoniometroText
in interface ViewFunctions.MedicionFunctions
lectura
- Cadena de texto a mostrar en el TextViewpublic void startAnimation(android.view.animation.Animation animation)
startAnimation
in interface ViewFunctions.MedicionFunctions
animation
- Animation que se asignara al parametro desplazamiento.public void setTamañoGoniometro(int tamañoGoniometro)
setTamañoGoniometro
in interface ViewFunctions.MedicionFunctions
tamañoGoniometro
- Tamaño final del goniometropublic void setTamañoReiniciar(int tamañoReiniciar)
setTamañoReiniciar
in interface ViewFunctions.MedicionFunctions
tamañoReiniciar
- Tamaño final del boton "Reiniciar"