Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm building an application in which I have loaded the webpage on webview. I have one layout which contains edittext in that. I want to hide the layout when user is scrolling down in the webview and show it again when user scrolls to the top. I have tried using onTouch but it only takes the MotionEvent.ACTION_MOVE and all that. Here what my code looks like:

@Override
public boolean onTouch(View v, MotionEvent event) {
    if (v.getId() == R.id.web
            && event.getAction() == MotionEvent.ACTION_MOVE) {
        handler.sendEmptyMessageDelayed(CLICK_ON_URL, 2000);
    }
    return false;
}

@Override
public boolean handleMessage(Message msg) {
    if (msg.what == CLICK_ON_URL) {
        top.setVisibility(LinearLayout.GONE);
        return true;
    }
    return false;
}

As you can see here I'm using top.setVisibility(LinearLayout.GONE);, but this is not solving my problem, it completely hides my layout.

Any idea how to overcome this problem.

share|improve this question

1 Answer

You may wrap both your layout and the webView inside a scrollView. So that when the user scrolls down, the parent will catch the scroll event. For reference,

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg_main" >

<!-- Both your views goes here -->

</ScrollView>

Hope that helps.

share|improve this answer
Thanks for the answer, but my project is at its end phase and right now changing the layouts and all will be a tough job for me. Can't we do it programmatically without the touching the layouts? – Anupam Oct 9 '12 at 4:42
this change wont affect your program in any way just add both the layout with editText and webview inside scrollview you dont need to write code for that in your class – Hari Oct 9 '12 at 4:44
@Hari - What should I write in the code for capturing that? Till that time I'm integrating both the layouts in scroll view. Thanks. – Anupam Oct 9 '12 at 4:47
you dont need to write code for scrollView just edit the xml and run the program – Hari Oct 9 '12 at 4:48
@Hari: Have you seen the latest FourSquare app. In that what they have done is that they have captured the gesture of the scroll and accordingly animating the layout to appear and disappear from the bottom. I want to use the same effect in my application. Do you have any idea about that? – Anupam Oct 9 '12 at 4:53
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.