Button sizing fixed added timer

This commit is contained in:
Gongxter 2015-11-19 11:19:32 +01:00
parent f1ef933963
commit ad5a873bf9
3 changed files with 23 additions and 5 deletions

View file

@ -8,7 +8,7 @@ public enum Symbol {
SaveFormat(new String[] {"1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N", "O", "P"}), SaveFormat(new String[] {"1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N", "O", "P"}),
Default(new String[] {"1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N"}), Default(new String[] {"1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N"}),
Roman(new String[] {"I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII", "XIII", "XIV", "XV", "XVI", "XVII", "XVIII", "XIX", "XX", "XXI", "XXII"}), Roman(new String[] {"I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII", "XIII", "XIV", "XV", "XVI", "XVII", "XVIII", "XIX", "XX", "XXI", "XXII"}),
Fancy(new String[] {"", "", "", "", "", "", "", "", "", "A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N" }); Fancy(new String[] {"", "", "", "", "", "", "", "", "", "A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N" });
private String[] map; private String[] map;

View file

@ -3,6 +3,7 @@ package tu_darmstadt.sudoku.ui.view;
import android.content.Context; import android.content.Context;
import android.graphics.Canvas; import android.graphics.Canvas;
import android.util.AttributeSet; import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.Gravity; import android.view.Gravity;
import android.view.View; import android.view.View;
import android.widget.GridLayout; import android.widget.GridLayout;
@ -22,6 +23,7 @@ public class SudokuKeyboardLayout extends GridLayout {
GameController gameController; GameController gameController;
boolean notesEnabled=false; boolean notesEnabled=false;
Symbol symbolsToUse = Symbol.Default; Symbol symbolsToUse = Symbol.Default;
float normalTextSize = 0;
OnClickListener listener = new OnClickListener() { OnClickListener listener = new OnClickListener() {
@Override @Override
@ -83,17 +85,18 @@ public class SudokuKeyboardLayout extends GridLayout {
public void toggleNotesEnabled() { public void toggleNotesEnabled() {
notesEnabled = !notesEnabled; notesEnabled = !notesEnabled;
if (normalTextSize == 0) {normalTextSize = buttons[0].getTextSize();}
if(notesEnabled) { if(notesEnabled) {
setTextSize(buttons[0].getPaint().getTextSize()/2); setTextSize(normalTextSize*0.6f);
}else { }else {
setTextSize(buttons[0].getPaint().getTextSize()*2); setTextSize(normalTextSize);
} }
} }
private void setTextSize(float size){ private void setTextSize(float size){
for (SudokuButton b : buttons){ for (SudokuButton b : buttons){
//b.setTextSize(size); //b.setTextSize(size);
b.getPaint().setTextSize(size); b.setTextSize(TypedValue.COMPLEX_UNIT_PX,size);
} }
} }

View file

@ -17,7 +17,22 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary" android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" /> app:popupTheme="@style/AppTheme.PopupOverlay" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="test"
android:id="@+id/time"
android:gravity="right"
android:layout_marginRight="@dimen/activity_horizontal_margin"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="testMode"
android:id="@+id/gameModeText"
android:gravity="center" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout> </android.support.design.widget.AppBarLayout>