Project

General

Profile

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

magiccube / src / main / java / org / distorted / screens / RubikScreenDone.java @ 3f287c05

1 807d82b7 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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 fcd5b990 Leszek Koltunski
package org.distorted.screens;
21 807d82b7 Leszek Koltunski
22
import android.content.SharedPreferences;
23 e3c74c0f Leszek Koltunski
import android.util.TypedValue;
24 807d82b7 Leszek Koltunski
import android.view.LayoutInflater;
25
import android.view.View;
26 4fb1fc0d Leszek Koltunski
import android.widget.ImageButton;
27 807d82b7 Leszek Koltunski
import android.widget.LinearLayout;
28
import android.widget.TextView;
29
30 dca3888a Leszek Koltunski
import androidx.fragment.app.FragmentManager;
31
32
import org.distorted.dialogs.RubikDialogNewRecord;
33
import org.distorted.dialogs.RubikDialogSolved;
34 55e6be1d Leszek Koltunski
import org.distorted.helpers.TransparentImageButton;
35 807d82b7 Leszek Koltunski
import org.distorted.main.R;
36
import org.distorted.main.RubikActivity;
37
38
///////////////////////////////////////////////////////////////////////////////////////////////////
39
40 fcd5b990 Leszek Koltunski
public class RubikScreenDone extends RubikScreenAbstract
41 807d82b7 Leszek Koltunski
  {
42 da768c35 Leszek Koltunski
  private ImageButton mBackButton;
43
44
///////////////////////////////////////////////////////////////////////////////////////////////////
45
46 f5da732a Leszek Koltunski
  void leaveScreen(RubikActivity act)
47 807d82b7 Leszek Koltunski
    {
48
49
    }
50
51
///////////////////////////////////////////////////////////////////////////////////////////////////
52
53 f5da732a Leszek Koltunski
  void enterScreen(final RubikActivity act)
54 807d82b7 Leszek Koltunski
    {
55 e3c74c0f Leszek Koltunski
    float width = act.getScreenWidthInPixels();
56
    float titleSize = width*RubikActivity.TITLE_TEXT_SIZE;
57 807d82b7 Leszek Koltunski
    LayoutInflater inflater = act.getLayoutInflater();
58
59
    // TOP ////////////////////////////
60
    LinearLayout layoutTop = act.findViewById(R.id.upperBar);
61
    layoutTop.removeAllViews();
62
    TextView label = (TextView)inflater.inflate(R.layout.upper_text, null);
63 e3c74c0f Leszek Koltunski
    label.setTextSize(TypedValue.COMPLEX_UNIT_PX, titleSize);
64 807d82b7 Leszek Koltunski
    label.setText(R.string.solved);
65
    layoutTop.addView(label);
66
67
    // BOT ////////////////////////////
68 92843d3b Leszek Koltunski
    LinearLayout layoutBot = act.findViewById(R.id.lowerBar);
69
    layoutBot.removeAllViews();
70 807d82b7 Leszek Koltunski
71 92843d3b Leszek Koltunski
    LinearLayout.LayoutParams paramsL = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.MATCH_PARENT,1);
72 4fb1fc0d Leszek Koltunski
    LinearLayout.LayoutParams paramsR = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.MATCH_PARENT,2);
73
74 92843d3b Leszek Koltunski
    LinearLayout layoutLeft = new LinearLayout(act);
75
    layoutLeft.setLayoutParams(paramsL);
76
    LinearLayout layoutRight = new LinearLayout(act);
77 4fb1fc0d Leszek Koltunski
    layoutRight.setLayoutParams(paramsR);
78 807d82b7 Leszek Koltunski
79 da768c35 Leszek Koltunski
    setupBackButton(act,width);
80 ad0c8e0e Leszek Koltunski
81 da768c35 Leszek Koltunski
    layoutRight.addView(mBackButton);
82
    layoutBot.addView(layoutLeft);
83
    layoutBot.addView(layoutRight);
84
    }
85 807d82b7 Leszek Koltunski
86 da768c35 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
87 4fb1fc0d Leszek Koltunski
88 da768c35 Leszek Koltunski
  private void setupBackButton(final RubikActivity act, final float width)
89
    {
90
    int icon = RubikActivity.getDrawable(R.drawable.ui_small_back,R.drawable.ui_medium_back, R.drawable.ui_big_back, R.drawable.ui_huge_back);
91
    mBackButton = new TransparentImageButton(act, icon, width, LinearLayout.LayoutParams.MATCH_PARENT);
92 807d82b7 Leszek Koltunski
93 da768c35 Leszek Koltunski
    mBackButton.setOnClickListener( new View.OnClickListener()
94 807d82b7 Leszek Koltunski
      {
95
      @Override
96
      public void onClick(View v)
97
        {
98 fcd5b990 Leszek Koltunski
        ScreenList.goBack(act);
99 da768c35 Leszek Koltunski
100
        FragmentManager mana = act.getSupportFragmentManager();
101
        RubikDialogNewRecord diag1 = (RubikDialogNewRecord) mana.findFragmentByTag(RubikDialogNewRecord.getDialogTag());
102
        RubikDialogSolved    diag2 = (RubikDialogSolved   ) mana.findFragmentByTag(RubikDialogSolved.getDialogTag());
103
104
        if( diag1 !=null ) diag1.dismiss();
105
        if( diag2 !=null ) diag2.dismiss();
106 807d82b7 Leszek Koltunski
        }
107
      });
108
    }
109
110
///////////////////////////////////////////////////////////////////////////////////////////////////
111
112
  public void savePreferences(SharedPreferences.Editor editor)
113
    {
114
115
    }
116
117
///////////////////////////////////////////////////////////////////////////////////////////////////
118
119
  public void restorePreferences(SharedPreferences preferences)
120
    {
121
122
    }
123
  }