From 246716539c5419a66613e414c6e31949c963f1fe Mon Sep 17 00:00:00 2001 From: Samidh Talsania Date: Sat, 25 Apr 2015 02:00:36 +0530 Subject: [PATCH] added new icons for unknown teams --- .../main/pl/surecase/eu/MyDaoGenerator.class | Bin 0 -> 1546 bytes .../adapters/MatchListAdapter.java | 7 +- gradlew.bat | 180 +++++++++--------- 3 files changed, 92 insertions(+), 95 deletions(-) create mode 100644 MyDaoGenerator/build/classes/main/pl/surecase/eu/MyDaoGenerator.class diff --git a/MyDaoGenerator/build/classes/main/pl/surecase/eu/MyDaoGenerator.class b/MyDaoGenerator/build/classes/main/pl/surecase/eu/MyDaoGenerator.class new file mode 100644 index 0000000000000000000000000000000000000000..00a96542a616c49644251fb4d6e0546cf858e3fc GIT binary patch literal 1546 zcmb7EZBr6a6n-wCyWlDcW-n%DS|XUMSZQgNFK8sFg`?y2p}D{f*I9O*WohJR^#x~g z#vjm+YC0EOsfNLVnRD(r_q;skEQb(5T$0xcRusHp=w3D~!(CzU$EFS#0_%2BFoZLP zC3dRiym0n;-Xu*VV;8u2z#T)%SIU5UY*ZLVGpD9rsXC&-D?%4lJzLx0_Li`O!(H21 zqOfIdSPVn4Pni?`mFp(AN_x(946C%%NXwlP1&X%0CWw{7u_$wf@k~+ZB}WL$vGca8 z7r9;XlIXdH5#{pd?Xw$fQB6nj?SN)wSA&_`<6u1qMY<|=!44C()^&vR`PKTPp6 zwpH>>=q-|F&9+U!t(LOq>M4j-(_~nTb*kp-t+biJfr1>ve22~QGX9N}p4>lpVGOtE zOD2ClF!`8>-X%#V&WLx#&%wSmuI~};ZYUKD(^+d8;66r33gQ7qDTs8wL;!x``xo#X z1tR`)1Tu*_x)PD@I+W~m9qQq9Bv?m?SWlB_P1f6FeRYKCuD_0f!wW=?&Jj(-{mD88 zTUe5W00^On{$cb|8GVE+j7R9l6b3L$-_->~v4TOQsLUK$NZb#b*ocpj)Ppp6j8iQ` gWI2JyRKpX}2S_tX=NO%R6faFYM7k|}z&iwg0h-pCZ2$lO literal 0 HcmV?d00001 diff --git a/app/src/main/java/com/bluealeaf/dota2ticker/adapters/MatchListAdapter.java b/app/src/main/java/com/bluealeaf/dota2ticker/adapters/MatchListAdapter.java index 768be04..71f5ed6 100644 --- a/app/src/main/java/com/bluealeaf/dota2ticker/adapters/MatchListAdapter.java +++ b/app/src/main/java/com/bluealeaf/dota2ticker/adapters/MatchListAdapter.java @@ -107,9 +107,6 @@ public View getView(int position, View convertView, ViewGroup parent) throws Il viewHolder = (ViewHolder) view.getTag(); } - - - viewHolder.teamOne.setText(match_data.getT1()); viewHolder.teamTwo.setText(match_data.getT2()); viewHolder.vs.setText("vs"); @@ -120,12 +117,12 @@ public View getView(int position, View convertView, ViewGroup parent) throws Il if(t1Resource == 0){ // t1Resource = context.getResources().getIdentifier(context.getPackageName()+":drawable/unknown_30px",null,null); - t1Resource = R.drawable.ic_action_help; + t1Resource = R.drawable.ic_question; } if(t2Resource == 0){ // t2Resource = context.getResources().getIdentifier(context.getPackageName()+":drawable/unknown_30px",null,null); - t2Resource = R.drawable.ic_action_help; + t2Resource = R.drawable.ic_question; } viewHolder.teamOneCnt.setImageResource(t1Resource); diff --git a/gradlew.bat b/gradlew.bat index 8a0b282..aec9973 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -1,90 +1,90 @@ -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS= - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto init - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto init - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:init -@rem Get command-line arguments, handling Windowz variants - -if not "%OS%" == "Windows_NT" goto win9xME_args -if "%@eval[2+2]" == "4" goto 4NT_args - -:win9xME_args -@rem Slurp the command line arguments. -set CMD_LINE_ARGS= -set _SKIP=2 - -:win9xME_args_slurp -if "x%~1" == "x" goto execute - -set CMD_LINE_ARGS=%* -goto execute - -:4NT_args -@rem Get arguments from the 4NT Shell from JP Software -set CMD_LINE_ARGS=%$ - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windowz variants + +if not "%OS%" == "Windows_NT" goto win9xME_args +if "%@eval[2+2]" == "4" goto 4NT_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* +goto execute + +:4NT_args +@rem Get arguments from the 4NT Shell from JP Software +set CMD_LINE_ARGS=%$ + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega