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 want a popup (a callout) to be on the screen when my application starts. Clicking on anything should cause the popup disappear.

I am making it appear using this piece of code in onCreate() -

findViewById(R.id.anchor_button).post(new Runnable() {
    @Override
    public void run() {
         SecondActivity.this.showPopupToolTip(findViewById(R.id.anchor_button), "Sample Text");
    }
}); 

and my showPopupToolTip function is as follows -

protected void showPopupToolTip(View findViewById, String string) {
        LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        TextView view = (TextView) inflater.inflate(R.layout.popup_tooltip1, null);
        view.setText(string);

        toolTopPopup = new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);   
        toolTopPopup.setOutsideTouchable(true);
        toolTopPopup.setTouchable(true);
        toolTopPopup.setFocusable(false);
        toolTopPopup.setBackgroundDrawable(new BitmapDrawable());
        toolTopPopup.setAnimationStyle(0);

        toolTopPopup.setOnDismissListener(new OnDismissListener() {

            @Override
            public void onDismiss() {
                Log.e("HELLO", "On Dismiss called");

            }
        });

        toolTopPopup.setTouchInterceptor(new OnTouchListener() {
            public boolean onTouch(View v, MotionEvent event) {
                SecondActivity.this.toolTopPopup.dismiss();
                return true;
            }
        });

        toolTopPopup.showAsDropDown(findViewById(R.id.anchor_button), 0, 0);
    }

The popup appears. But when i press the EditText field the keyboard slides in but whatever I type will not appear in my EditText field. What is wrong?

In case it helps, this is my activity layout -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/ll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/anchor_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="H" />

        <EditText
            android:id="@+id/search_field"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:hint="Search" />
    </LinearLayout>

</LinearLayout>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.