Merge "Remove top padding only if illustration is present" into nyc-dev am: 0e4816efb9

am: ec3fec5f94

* commit 'ec3fec5f94c5429433a1dd7c87cb40cd6a035efb':
  Remove top padding only if illustration is present

Change-Id: Ie08a1d1ef54e32af85b5d3d312e6d5563ab3a822
This commit is contained in:
Maurice Lam
2016-05-02 18:10:21 +00:00
committed by android-build-merger

View File

@@ -35,6 +35,7 @@ import android.widget.TextView;
import com.android.settings.R;
import com.android.setupwizardlib.SetupWizardLayout;
import com.android.setupwizardlib.view.Illustration;
import java.text.NumberFormat;
import java.util.List;
@@ -119,10 +120,12 @@ public abstract class StorageWizardBase extends Activity {
scrollView.setVerticalFadingEdgeEnabled(true);
scrollView.setFadingEdgeLength(scrollView.getVerticalFadingEdgeLength() * 2);
// Our header assets already have padding baked in
final View title = findViewById(R.id.suw_layout_title);
title.setPadding(title.getPaddingLeft(), 0, title.getPaddingRight(),
title.getPaddingBottom());
if (findViewById(R.id.suw_layout_decor) instanceof Illustration) {
// Our header illustration already have padding baked in
final View title = findViewById(R.id.suw_layout_title);
title.setPadding(title.getPaddingLeft(), 0, title.getPaddingRight(),
title.getPaddingBottom());
}
}
@Override