Project

General

Profile

Download (4.51 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / java / org / distorted / magic / RubikDialogScoresView.java @ 0fd3ac1f

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is free software: you can redistribute it and/or modify                            //
7
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11
// Magic Cube is distributed in the hope that it will be useful,                                 //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17
// along with Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
package org.distorted.magic;
21

    
22
import android.content.Context;
23
import android.support.v4.app.FragmentActivity;
24
import android.util.AttributeSet;
25
import android.view.View;
26
import android.widget.FrameLayout;
27
import android.widget.ImageView;
28
import android.widget.LinearLayout;
29
import android.widget.TextView;
30

    
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32

    
33
public class RubikDialogScoresView extends FrameLayout
34
  {
35
  LinearLayout mLayout;
36

    
37
///////////////////////////////////////////////////////////////////////////////////////////////////
38

    
39
  public RubikDialogScoresView(Context context, AttributeSet attrs, int defStyle)
40
    {
41
    super(context, attrs, defStyle);
42
    }
43

    
44
///////////////////////////////////////////////////////////////////////////////////////////////////
45

    
46
  public RubikDialogScoresView(Context context, AttributeSet attrs)
47
    {
48
    super(context, attrs);
49
    }
50

    
51
///////////////////////////////////////////////////////////////////////////////////////////////////
52

    
53
  public RubikDialogScoresView(Context context)
54
    {
55
    super(context);
56

    
57
    View view = inflate(context, R.layout.dialog_scores_downloading, null);
58
    addView(view);
59
    }
60

    
61
///////////////////////////////////////////////////////////////////////////////////////////////////
62

    
63
  void exception(final String exce)
64
    {
65
    TextView text = findViewById(R.id.downloading_text);
66
    text.setText(exce);
67
    }
68

    
69
///////////////////////////////////////////////////////////////////////////////////////////////////
70

    
71
  void prepareView(FragmentActivity act)
72
    {
73
    removeAllViews();
74

    
75
    View tab = inflate(act, R.layout.dialog_scores_tab, null);
76
    mLayout = tab.findViewById(R.id.tabLayout);
77
    addView(tab);
78
    }
79

    
80
///////////////////////////////////////////////////////////////////////////////////////////////////
81

    
82
  void addSection(FragmentActivity act, int scramble, final int[] country, final String[] name, final String[] time)
83
    {
84
    LinearLayout level = (LinearLayout)inflate(act, R.layout.dialog_scores_scramble_title, null);
85
    TextView text = level.findViewById(R.id.scoresScrambleTitle);
86
    text.setText(act.getString(R.string.sc_placeholder,(scramble+1)));
87

    
88
    for(int j=0; j<RubikScoresDownloader.MAX_PLACES; j++)
89
      {
90
      if( name[j] != null )
91
        {
92
        View row = inflate(act, R.layout.dialog_scores_scramble_row, null);
93

    
94
        ImageView imgCoun = row.findViewById(R.id.scoresScrambleRowCountry);
95
        TextView textName = row.findViewById(R.id.scoresScrambleRowName);
96
        TextView textTime = row.findViewById(R.id.scoresScrambleRowTime);
97

    
98
        imgCoun.setImageResource(country[j]);
99
        textName.setText(name[j]);
100
        textTime.setText(time[j]);
101

    
102
        level.addView(row);
103
        }
104
      }
105

    
106
    mLayout.addView(level);
107
    }
108
  }
(6-6/11)