Package com.zendesk.sdk.support
Class ViewArticleActivity
- java.lang.Object
-
- AppCompatActivity
-
- com.zendesk.sdk.ui.NetworkAwareActionbarActivity
-
- com.zendesk.sdk.support.ViewArticleActivity
-
- All Implemented Interfaces:
- NetworkAware, Retryable
public class ViewArticleActivity extends NetworkAwareActionbarActivity
Activity used to render a Help Center articleThe recommended method of creating the activity is by using the following
startActivity
method
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
EXTRA_ARTICLE
static java.lang.String
EXTRA_SIMPLE_ARTICLE
-
Fields inherited from class com.zendesk.sdk.ui.NetworkAwareActionbarActivity
mNetworkAvailable
-
-
Constructor Summary
Constructors Constructor and Description ViewArticleActivity()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description protected void
onCreate(Bundle savedInstanceState)
protected void
onDestroy()
void
onItemClick(<any> parent, View view, int position, long id)
boolean
onOptionsItemSelected(MenuItem item)
protected void
onPause()
protected void
onResume()
protected void
setLoadingState(LoadingState loadingState)
Sets the loading state of this fragment.static void
startActivity(Context context, Article article)
Starts activity and sets up extra parameters, that are required for the activitystatic void
startActivity(Context context, SimpleArticle simpleArticle)
-
Methods inherited from class com.zendesk.sdk.ui.NetworkAwareActionbarActivity
onNetworkAvailable, onNetworkUnavailable, onRetryAvailable, onRetryUnavailable
-
-
-
-
Field Detail
-
EXTRA_ARTICLE
public static final java.lang.String EXTRA_ARTICLE
- See Also:
- Constant Field Values
-
EXTRA_SIMPLE_ARTICLE
public static final java.lang.String EXTRA_SIMPLE_ARTICLE
- See Also:
- Constant Field Values
-
-
Method Detail
-
startActivity
public static void startActivity(Context context, Article article)
Starts activity and sets up extra parameters, that are required for the activity- Parameters:
context
- Context to be used for Activity creationarticle
- article model to be passed to the Activity for rendering
-
startActivity
public static void startActivity(Context context, SimpleArticle simpleArticle)
-
onCreate
protected void onCreate(Bundle savedInstanceState)
- Overrides:
onCreate
in classNetworkAwareActionbarActivity
-
onResume
protected void onResume()
- Overrides:
onResume
in classNetworkAwareActionbarActivity
-
onPause
protected void onPause()
- Overrides:
onPause
in classNetworkAwareActionbarActivity
-
onOptionsItemSelected
public boolean onOptionsItemSelected(MenuItem item)
-
setLoadingState
protected void setLoadingState(LoadingState loadingState)
Sets the loading state of this fragment.This controls the visibility of the views in this fragment and starts / stops progress indicators.
- Parameters:
loadingState
- The loading state to set.
-
onItemClick
public void onItemClick(<any> parent, View view, int position, long id)
-
onDestroy
protected void onDestroy()
-
-