android - Floating EditText on top of Layout -


in xamarin, possible have edittext "floating" on top of layout?

i thinking of "bring front" sort of code.

currently edittext not showing.

here current code:

<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal" android:padding="5dip"> <edittext     android:id="@+id/inputsearch"     android:layout_width="fill_parent"     android:layout_height="49.1dp"     android:hint="find..."     android:inputtype="textvisiblepassword"     android:layout_marginbottom="15.2dp" /> <framelayout     android:id="@+id/mapwithoverlay"     android:layout_width="fill_parent"     android:layout_height="match_parent"     android:layout_below="@+id/thumbnail" /> 

thanks in advance

place edittext below frame layout

<framelayout ... /> <edittext .../> 

Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -