• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14 package com.example.android.tvleanback.ui;
15 
16 import android.os.Bundle;
17 import android.util.Log;
18 import android.view.View;
19 
20 import com.example.android.tvleanback.R;
21 
22 /*
23  * This class demonstrates how to extend ErrorFragment
24  */
25 public class ErrorFragment extends android.support.v17.leanback.app.ErrorFragment {
26     private static final String TAG = "ErrorFragment";
27     private static final boolean TRANSLUCENT = true;
28 
29     @Override
onCreate(Bundle savedInstanceState)30     public void onCreate(Bundle savedInstanceState) {
31         Log.d(TAG, "onCreate");
32         super.onCreate(savedInstanceState);
33         setTitle(getResources().getString(R.string.app_name));
34     }
35 
setErrorContent()36     void setErrorContent() {
37         setImageDrawable(getResources().getDrawable(R.drawable.lb_ic_sad_cloud));
38         setMessage(getResources().getString(R.string.error_fragment_message));
39         setDefaultBackground(TRANSLUCENT);
40 
41         setButtonText(getResources().getString(R.string.dismiss_error));
42         setButtonClickListener(new View.OnClickListener() {
43             @Override
44             public void onClick(View arg0) {
45                 getFragmentManager().beginTransaction().remove(ErrorFragment.this).commit();
46             }
47         });
48     }
49 }
50