una transición transiciones textos que puede power poner objetos los hacer explique efectos diapositivas diapositiva con como aplicar animar animación animaciones animacion android android-viewpager native fadein slide

android - transición - La animación de ViewPager aparece/desaparece en lugar de la diapositiva



efectos de animacion en power point (4)

Basado en la respuesta de @ murena, esto debería funcionar mejor para la transformación de entrada / salida. Al final de la animación, la posición se restaura al valor predeterminado.

public void transformPage(View view, float position) { if(position <= -1.0F || position >= 1.0F) { view.setTranslationX(view.getWidth() * position); view.setAlpha(0.0F); } else if( position == 0.0F ) { view.setTranslationX(view.getWidth() * position); view.setAlpha(1.0F); } else { // position is between -1.0F & 0.0F OR 0.0F & 1.0F view.setTranslationX(view.getWidth() * -position); view.setAlpha(1.0F - Math.abs(position)); } }

Tengo el ejemplo de FragmentBasics desde here . ¿Hay alguna forma de hacer que la animación de ViewPager simplemente aparezca y desaparezca cuando deslizo en lugar de deslizarse hacia la izquierda y hacia la derecha? He estado probando algunas cosas con PageTransformer, pero no tengo éxito, todavía puedo verlo deslizarse. Así que supongo que necesito forzar de alguna manera su posición para que se quede quieto, mientras que deslizar mi dedo solo afecta al alfa.

public class SecondActivity extends Activity { SectionsPagerAdapter mSectionsPagerAdapter; ViewPager mViewPager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_second); // Create the adapter that will return a fragment for each of the three // primary sections of the activity. mSectionsPagerAdapter = new SectionsPagerAdapter(getFragmentManager()); // Set up the ViewPager with the sections adapter. mViewPager = (ViewPager) findViewById(R.id.pager); mViewPager.setPageTransformer(false, new FadePageTransformer()); mViewPager.setAdapter(mSectionsPagerAdapter); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.second, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } public class SectionsPagerAdapter extends FragmentPagerAdapter { public SectionsPagerAdapter(FragmentManager fm) { super(fm); } @Override public Fragment getItem(int position) { // getItem is called to instantiate the fragment for the given page. // Return a PlaceholderFragment (defined as a static inner class below). return PlaceholderFragment.newInstance(position + 1); } @Override public int getCount() { // Show 3 total pages. return 3; } @Override public CharSequence getPageTitle(int position) { Locale l = Locale.getDefault(); switch (position) { case 0: return getString(R.string.title_section1).toUpperCase(l); case 1: return getString(R.string.title_section2).toUpperCase(l); case 2: return getString(R.string.title_section3).toUpperCase(l); } return null; } } public static class PlaceholderFragment extends Fragment { /** * The fragment argument representing the section number for this fragment. */ private static final String ARG_SECTION_NUMBER = "section_number"; /** * Returns a new instance of this fragment for the given section number. */ public static PlaceholderFragment newInstance(int sectionNumber) { PlaceholderFragment fragment = new PlaceholderFragment(); Bundle args = new Bundle(); args.putInt(ARG_SECTION_NUMBER, sectionNumber); fragment.setArguments(args); return fragment; } public PlaceholderFragment() { } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_second, container, false); TextView textView = (TextView) rootView.findViewById(R.id.section_label); textView.setText(Integer.toString(getArguments().getInt(ARG_SECTION_NUMBER))); return rootView; } } public class FadePageTransformer implements ViewPager.PageTransformer { public void transformPage(View view, float position) { if (position < -1 || position > 1) { view.setAlpha(0); } else if (position <= 0 || position <= 1) { // Calculate alpha. Position is decimal in [-1,0] or [0,1] float alpha = (position <= 0) ? position + 1 : 1 - position; view.setAlpha(alpha); } else if (position == 0) { view.setAlpha(1); } } }


Encontré la respuesta de @murena muy útil. Sin embargo, me encontré con un problema cuando intenté agregar un OnClickListener a cada pestaña. Necesitaba cada página para abrir un enlace URL diferente. Modifiqué el código para ocultar las vistas que están fuera de vista y agregué un pequeño efecto adicional para deslizar la vista a .5 la velocidad:

public void transformPage(View view, float position) { if (position <= -1.0F || position >= 1.0F) { // [-Infinity,-1) OR (1,+Infinity] view.setAlpha(0.0F); view.setVisibility(View.GONE); } else if( position == 0.0F ) { // [0] view.setAlpha(1.0F); view.setVisibility(View.VISIBLE); } else { // Position is between [-1,1] view.setAlpha(1.0F - Math.abs(position)); view.setTranslationX(-position * (view.getWidth() / 2)); view.setVisibility(View.VISIBLE); } }


Esto debería funcionar mejor para la transformación de entrada / salida:

public void transformPage(View view, float position) { view.setTranslationX(view.getWidth() * -position); if(position <= -1.0F || position >= 1.0F) { view.setAlpha(0.0F); } else if( position == 0.0F ) { view.setAlpha(1.0F); } else { // position is between -1.0F & 0.0F OR 0.0F & 1.0F view.setAlpha(1.0F - Math.abs(position)); } }


Un transformador de desvanecimiento simple podría implementarse así:

private static class FadePageTransformer implements ViewPager.PageTransformer { public void transformPage(View view, float position) { view.setAlpha(1 - Math.abs(position)); if (position < 0) { view.setScrollX((int)((float)(view.getWidth()) * position)); } else if (position > 0) { view.setScrollX(-(int) ((float) (view.getWidth()) * -position)); } else { view.setScrollX(0); } } }

Quizás no sea exactamente lo que buscas, pero es un buen punto de partida.