Deprecated API


Contents
Deprecated Fields
android.support.v4.widget.CursorAdapter.FLAG_AUTO_REQUERY
          This option is discouraged, as it results in Cursor queries being performed on the application's UI thread and thus can cause poor responsiveness or even Application Not Responding errors. As an alternative, use LoaderManager with a CursorLoader. 
 

Deprecated Methods
android.support.v4.view.PagerAdapter.destroyItem(View, int, Object)
          Use PagerAdapter.destroyItem(ViewGroup, int, Object) 
android.support.v4.view.PagerAdapter.finishUpdate(View)
          Use PagerAdapter.setPrimaryItem(ViewGroup, int, Object) 
android.support.v4.widget.CursorAdapter.init(Context, Cursor, boolean)
          Don't use this, use the normal constructor. This will be removed in the future. 
android.support.v4.view.PagerAdapter.instantiateItem(View, int)
          Use PagerAdapter.instantiateItem(ViewGroup, int) 
android.support.v4.app.FragmentManager.openTransaction()
           
android.support.v4.view.PagerAdapter.setPrimaryItem(View, int, Object)
          Use PagerAdapter.setPrimaryItem(ViewGroup, int, Object) 
android.support.v4.view.MenuCompat.setShowAsAction(MenuItem, int)
          Use MenuItemCompat.setShowAsAction(MenuItem, int) 
android.support.v4.view.PagerAdapter.startUpdate(View)
          Use PagerAdapter.startUpdate(ViewGroup) 
 

Deprecated Constructors
android.support.v4.widget.CursorAdapter(Context, Cursor)
          This option is discouraged, as it results in Cursor queries being performed on the application's UI thread and thus can cause poor responsiveness or even Application Not Responding errors. As an alternative, use LoaderManager with a CursorLoader. 
android.support.v4.widget.ResourceCursorAdapter(Context, int, Cursor)
          This option is discouraged, as it results in Cursor queries being performed on the application's UI thread and thus can cause poor responsiveness or even Application Not Responding errors. As an alternative, use LoaderManager with a CursorLoader. 
android.support.v4.widget.SimpleCursorAdapter(Context, int, Cursor, String[], int[])
          This option is discouraged, as it results in Cursor queries being performed on the application's UI thread and thus can cause poor responsiveness or even Application Not Responding errors. As an alternative, use LoaderManager with a CursorLoader. 
 



Copyright © 2011-2012 Google. All Rights Reserved.