In Xamarin, I create an EditText Field and a Search Button, when a user taps the button on their Android device, it must search the Azure database tables, find the relevant record and display/populate it in the record_view.axml I created?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="ID"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/Id_row"
android:layout_weight="1"
android:gravity="center"
android:textSize="15dp"
android:textColor="#ffffffff"
android:textStyle="bold" />
<TextView
android:text="Name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/Name_row"
android:layout_weight="1"
android:textSize="15dp"
android:textColor="#ffffffff"
android:textStyle="bold" />
<TextView
android:text="Mobile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/Mobile_row"
android:layout_weight="1"
android:textSize="15dp"
android:textStyle="bold"
android:textColor="#ffffffff"
android:gravity="center" />
<TextView
android:text="Email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/Email_row"
android:layout_weight="1"
android:textSize="15dp"
android:textStyle="bold"
android:textColor="#ffffffff"
android:gravity="center" />
</LinearLayout>
I have the same rows above in the Azure database as columns.
Can anyone point me in the right direction, a tutorial or some info regarding this will really help?
Thanks in advance