Project

General

Profile

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

magiccube / src / main / java / org / distorted / magic / RubikScoresView.java @ 4918f19c

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.ScrollView;
30
import android.widget.TextView;
31

    
32
///////////////////////////////////////////////////////////////////////////////////////////////////
33

    
34
public class RubikScoresView extends FrameLayout
35
  {
36
  LinearLayout mLayout;
37

    
38
///////////////////////////////////////////////////////////////////////////////////////////////////
39

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

    
45
///////////////////////////////////////////////////////////////////////////////////////////////////
46

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

    
52
///////////////////////////////////////////////////////////////////////////////////////////////////
53

    
54
  public RubikScoresView(Context context)
55
    {
56
    super(context);
57

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

    
62
///////////////////////////////////////////////////////////////////////////////////////////////////
63

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

    
70
///////////////////////////////////////////////////////////////////////////////////////////////////
71

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

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

    
81
///////////////////////////////////////////////////////////////////////////////////////////////////
82

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

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

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

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

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

    
107
    mLayout.addView(level);
108
    }
109
  }
(8-8/11)