public
class
ErrorFragment
extends BrandedFragment
java.lang.Object | |||
↳ | android.app.Fragment | ||
↳ | android.support.v17.leanback.app.BrandedFragment | ||
↳ | android.support.v17.leanback.app.ErrorFragment |
A fragment for displaying an error indication.
Inherited XML attributes | |
---|---|
From
class
android.app.Fragment
|
Inherited constants |
---|
From
interface
android.content.ComponentCallbacks2
|
Public constructors | |
---|---|
ErrorFragment()
|
Public methods | |
---|---|
Drawable
|
getBackgroundDrawable()
Returns the background drawable. |
View.OnClickListener
|
getButtonClickListener()
Returns the button click listener. |
String
|
getButtonText()
Returns the button text. |
Drawable
|
getImageDrawable()
Returns the drawable used for the error image. |
CharSequence
|
getMessage()
Returns the error message. |
boolean
|
isBackgroundTranslucent()
Returns true if the background is translucent. |
View
|
onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
Called to have the fragment instantiate its user interface view. |
void
|
onStart()
Called when the Fragment is visible to the user. |
void
|
setBackgroundDrawable(Drawable drawable)
Sets a drawable for the fragment background. |
void
|
setButtonClickListener(View.OnClickListener clickListener)
Set the button click listener. |
void
|
setButtonText(String text)
Sets the button text. |
void
|
setDefaultBackground(boolean translucent)
Sets the default background. |
void
|
setImageDrawable(Drawable drawable)
Sets the drawable to be used for the error image. |
void
|
setMessage(CharSequence message)
Sets the error message. |
Inherited methods | |
---|---|
From
class
android.support.v17.leanback.app.BrandedFragment
| |
From
class
android.app.Fragment
| |
From
class
java.lang.Object
| |
From
interface
android.content.ComponentCallbacks2
| |
From
interface
android.view.View.OnCreateContextMenuListener
| |
From
interface
android.content.ComponentCallbacks
|
ErrorFragment ()
Drawable getBackgroundDrawable ()
Returns the background drawable. May be null if a default is used.
Returns | |
---|---|
Drawable |
View.OnClickListener getButtonClickListener ()
Returns the button click listener.
Returns | |
---|---|
View.OnClickListener |
Drawable getImageDrawable ()
Returns the drawable used for the error image.
Returns | |
---|---|
Drawable |
boolean isBackgroundTranslucent ()
Returns true if the background is translucent.
Returns | |
---|---|
boolean |
View onCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
Called to have the fragment instantiate its user interface view.
This is optional, and non-graphical fragments can return null (which
is the default implementation). This will be called between
onCreate(Bundle)
and onActivityCreated(Bundle)
.
If you return a View from here, you will later be called in
onDestroyView()
when the view is being released.
Parameters | |
---|---|
inflater |
LayoutInflater :
The LayoutInflater object that can be used to inflate
any views in the fragment, |
container |
ViewGroup :
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 |
Bundle :
If non-null, this fragment is being re-constructed
from a previous saved state as given here. |
Returns | |
---|---|
View |
Return the View for the fragment's UI, or null. |
void onStart ()
Called when the Fragment is visible to the user. This is generally
tied to Activity.onStart
of the containing
Activity's lifecycle.
void setBackgroundDrawable (Drawable drawable)
Sets a drawable for the fragment background.
Parameters | |
---|---|
drawable |
Drawable :
The drawable used for the background.
|
void setButtonClickListener (View.OnClickListener clickListener)
Set the button click listener.
Parameters | |
---|---|
clickListener |
View.OnClickListener :
The click listener for the button.
|
void setButtonText (String text)
Sets the button text.
Parameters | |
---|---|
text |
String :
The button text.
|
void setDefaultBackground (boolean translucent)
Sets the default background.
Parameters | |
---|---|
translucent |
boolean :
True to set a translucent background.
|
void setImageDrawable (Drawable drawable)
Sets the drawable to be used for the error image.
Parameters | |
---|---|
drawable |
Drawable :
The drawable used for the error image.
|
void setMessage (CharSequence message)
Sets the error message.
Parameters | |
---|---|
message |
CharSequence :
The error message.
|