1

How to add custom view in android's JellyBean Launcher As per the above said in above link,I have added the left page to existing android AOSP launcher3 code , it's look like screenshot.

But always search container(Qbs container) in first screen, How can i remove in first screen and place it in main screen. enter image description here

sampath
  • 11
  • 2
  • 1
    I am also trying to add a left swipable screen to launcher3, able to add the screen, but this screen does not allow left or right swipe. Did you face this issue? – Vivz Jun 28 '17 at 11:06

1 Answers1

1

To remove the search container from the first screen,

FrameLayout gBar = (FrameLayout) findViewById(R.id.g_bar);
gBar.setVisibility(View.INVISIBLE);
m.n Aswin
  • 119
  • 3
  • 7