mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-02 06:20:14 +01:00
make turn color public so can be used from board too (though I'm not
doing that yet.)
This commit is contained in:
parent
6beb572180
commit
628c058c4c
2 changed files with 4 additions and 3 deletions
|
@ -46,7 +46,6 @@ public class GameListAdapter extends XWListAdapter {
|
|||
private Context m_context;
|
||||
private LayoutInflater m_factory;
|
||||
private int m_fieldID;
|
||||
private static final int TURN_COLOR = 0x7F00FF00;
|
||||
|
||||
private class ViewInfo implements View.OnClickListener {
|
||||
private View m_view;
|
||||
|
@ -79,7 +78,7 @@ public class GameListAdapter extends XWListAdapter {
|
|||
m_name.setBackgroundColor( android.R.color.transparent );
|
||||
if ( !m_expanded ) {
|
||||
if ( m_haveTurnLocal ) {
|
||||
m_name.setBackgroundColor( TURN_COLOR );
|
||||
m_name.setBackgroundColor( Utils.TURN_COLOR );
|
||||
} else if ( m_haveTurn ) {
|
||||
m_name.setBackgroundResource( R.drawable.green_border );
|
||||
}
|
||||
|
@ -185,7 +184,7 @@ public class GameListAdapter extends XWListAdapter {
|
|||
haveTurn = true;
|
||||
if ( isLocal[0] ) {
|
||||
haveTurnLocal = true;
|
||||
tmp.setBackgroundColor( TURN_COLOR );
|
||||
tmp.setBackgroundColor( Utils.TURN_COLOR );
|
||||
} else {
|
||||
tmp.setBackgroundResource( R.drawable.green_border );
|
||||
}
|
||||
|
|
|
@ -48,6 +48,8 @@ import junit.framework.Assert;
|
|||
import org.eehouse.android.xw4.jni.*;
|
||||
|
||||
public class Utils {
|
||||
public static final int TURN_COLOR = 0x7F00FF00;
|
||||
|
||||
private static final String DB_PATH = "XW_GAMES";
|
||||
private static final String HIDDEN_PREFS = "xwprefs_hidden";
|
||||
private static final String SHOWN_VERSION_KEY = "SHOWN_VERSION_KEY";
|
||||
|
|
Loading…
Reference in a new issue