Updating the UI for focused state of an icon/folder.

issue: 16352129

Change-Id: If2e154dba06a0648f933f9aea38898642db9fd85
This commit is contained in:
Sunny Goyal
2014-08-12 15:58:36 -07:00
parent 0fc1be164e
commit dcbcc86353
22 changed files with 201 additions and 17 deletions
@@ -20,8 +20,16 @@ import android.content.Context;
import android.view.View;
public class AppsCustomizeCellLayout extends CellLayout implements Page {
final FocusIndicatorView mFocusHandlerView;
public AppsCustomizeCellLayout(Context context) {
super(context);
mFocusHandlerView = new FocusIndicatorView(context);
addView(mFocusHandlerView, 0);
mFocusHandlerView.getLayoutParams().width = FocusIndicatorView.DEFAULT_LAYOUT_SIZE;
mFocusHandlerView.getLayoutParams().height = FocusIndicatorView.DEFAULT_LAYOUT_SIZE;
}
@Override