Light color correction

This commit is contained in:
serso
2015-02-10 11:28:45 +01:00
parent d5f06bb3f2
commit 3d1731995a
6 changed files with 5 additions and 4 deletions

View File

@@ -2,6 +2,7 @@ package org.solovyev.android.calculator.wizard;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import org.solovyev.android.calculator.App;
import org.solovyev.android.calculator.R;
@@ -16,8 +17,8 @@ public class FinalWizardStep extends WizardFragment {
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
if (App.getTheme().isLight()) {
/*final TextView message = (TextView) view.findViewById(R.id.wizard_final_message);
message.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.ic_action_done_blue, 0, 0);*/
final TextView message = (TextView) view.findViewById(R.id.wizard_final_message);
message.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.ic_action_done_light, 0, 0);
}
}
}