Most visited

Recently visited

ErrorSupportFragment

public class ErrorSupportFragment
extends BrandedSupportFragment

java.lang.Object
   ↳ android.support.v4.app.Fragment
     ↳ android.support.v17.leanback.app.BrandedSupportFragment
       ↳ android.support.v17.leanback.app.ErrorSupportFragment


用于显示错误指示的片段。

Summary

Public constructors

ErrorSupportFragment()

Public methods

Drawable getBackgroundDrawable()

返回可绘制背景。

View.OnClickListener getButtonClickListener()

返回按钮点击侦听器。

String getButtonText()

返回按钮文本。

Drawable getImageDrawable()

返回用于错误图像的drawable。

CharSequence getMessage()

返回错误消息。

boolean isBackgroundTranslucent()

如果背景是半透明的,则返回true。

View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)

调用以使片段实例化其用户界面视图。

void onStart()

当片段对用户可见时调用。

void setBackgroundDrawable(Drawable drawable)

为片段背景设置一个drawable。

void setButtonClickListener(View.OnClickListener clickListener)

设置按钮点击监听器。

void setButtonText(String text)

设置按钮文本。

void setDefaultBackground(boolean translucent)

设置默认背景。

void setImageDrawable(Drawable drawable)

设置要用于错误图像的绘图。

void setMessage(CharSequence message)

设置错误消息。

Inherited methods

From class android.support.v17.leanback.app.BrandedSupportFragment
From class android.support.v4.app.Fragment
From class java.lang.Object
From interface android.content.ComponentCallbacks
From interface android.view.View.OnCreateContextMenuListener

Public constructors

ErrorSupportFragment

ErrorSupportFragment ()

Public methods

getBackgroundDrawable

Drawable getBackgroundDrawable ()

返回可绘制背景。 如果使用默认值,则可能为空。

Returns
Drawable

getButtonClickListener

View.OnClickListener getButtonClickListener ()

返回按钮点击侦听器。

Returns
View.OnClickListener

getButtonText

String getButtonText ()

返回按钮文本。

Returns
String

getImageDrawable

Drawable getImageDrawable ()

返回用于错误图像的drawable。

Returns
Drawable

getMessage

CharSequence getMessage ()

返回错误消息。

Returns
CharSequence

isBackgroundTranslucent

boolean isBackgroundTranslucent ()

如果背景是半透明的,则返回true。

Returns
boolean

onCreateView

View onCreateView (LayoutInflater inflater, 
                ViewGroup container, 
                Bundle savedInstanceState)

调用以使片段实例化其用户界面视图。 这是可选的,非图形片段可以返回null(这是默认实现)。 这将在onCreate(Bundle)onActivityCreated(Bundle)之间onActivityCreated(Bundle)

如果您从此处返回视图,则稍后将在发布视图时在 onDestroyView()调用该视图。

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.

onStart

void onStart ()

当片段对用户可见时调用。 这通常与包含Activity的生命周期的Activity.onStart相关联。

setBackgroundDrawable

void setBackgroundDrawable (Drawable drawable)

为片段背景设置一个drawable。

Parameters
drawable Drawable: The drawable used for the background.

setButtonClickListener

void setButtonClickListener (View.OnClickListener clickListener)

设置按钮点击监听器。

Parameters
clickListener View.OnClickListener: The click listener for the button.

setButtonText

void setButtonText (String text)

设置按钮文本。

Parameters
text String: The button text.

setDefaultBackground

void setDefaultBackground (boolean translucent)

设置默认背景。

Parameters
translucent boolean: True to set a translucent background.

setImageDrawable

void setImageDrawable (Drawable drawable)

设置要用于错误图像的绘图。

Parameters
drawable Drawable: The drawable used for the error image.

setMessage

void setMessage (CharSequence message)

设置错误消息。

Parameters
message CharSequence: The error message.

Hooray!