comparison app/src/main/java/com/five_ten_sg/connectbot/HostListActivity.java @ 449:1c9d043c2c03

fix lint error
author Carl Byington <carl@five-ten-sg.com>
date Thu, 17 Mar 2016 13:49:04 -0700
parents d29cce60f393
children 50d5ed32327d
comparison
equal deleted inserted replaced
448:df509fd900ba 449:1c9d043c2c03
632 holder.nickname.setTextColor(chosen); 632 holder.nickname.setTextColor(chosen);
633 holder.caption.setTextColor(chosen); 633 holder.caption.setTextColor(chosen);
634 } 634 }
635 else { 635 else {
636 // selected, so revert back to default black text 636 // selected, so revert back to default black text
637 holder.nickname.setTextAppearance(context, android.R.attr.textAppearanceLarge); 637 holder.nickname.setTextAppearance(context, android.R.style.textAppearanceLarge);
638 holder.caption.setTextAppearance(context, android.R.attr.textAppearanceSmall); 638 holder.caption.setTextAppearance(context, android.R.style.textAppearanceSmall);
639 } 639 }
640 640
641 long now = System.currentTimeMillis() / 1000; 641 long now = System.currentTimeMillis() / 1000;
642 String nice = context.getString(R.string.bind_never); 642 String nice = context.getString(R.string.bind_never);
643 643