Navigation Menu

Skip to content
This repository has been archived by the owner on Jan 25, 2018. It is now read-only.

Commit

Permalink
fixing edit view
Browse files Browse the repository at this point in the history
  • Loading branch information
n8fr8 committed Aug 30, 2011
1 parent a58e869 commit c38954c
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -176,7 +176,10 @@ private TextView initStatusBar(long providerId) {
mContext.getContentResolver(), providerId,
ImpsConfigNames.SUPPORT_USER_DEFINED_PRESENCE);

if ("true".equalsIgnoreCase(value)) {
boolean showEdit = true;

//if ("true".equalsIgnoreCase(value)) {
if (showEdit) {
EditText statusEdit = (EditText) findViewById(R.id.statusEdit);
statusEdit.setVisibility(View.VISIBLE);
statusEdit.setOnKeyListener(new OnKeyListener() {
Expand Down

0 comments on commit c38954c

Please sign in to comment.