Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > Mobile > Android Tutorials - สอนเขียน Android App ฟรี เขียนโปรแกรมแอนดรอยด์บน SmartPhone / Tablets > ตอนที่ 7 : Show Case 3 : Update Data (Android C# (Xamarin) and Mobile Services)



Clound SSD Virtual Server

ตอนที่ 7 : Show Case 3 : Update Data (Android C# (Xamarin) and Mobile Services)

ตอนที่ 7 : Show Case 3 : Update Data (Android C# (Xamarin) and Mobile Services) บทความการเขียน Android C# (Xamarin) ด้วย Tools ของ Visual Studio เพื่อทำการติดต่อกับ Azure Mobile Services และการเรียกข้อมูลจาก Mobile Services เพื่อ Update หรือแก้ไขข้อมูลในตาราง โดยหลักการก็คือจะเรียกข้อมูลจาก ID หรือ Key ที่ำหนด จากนั้นค่อยส่งค่าที่ต้องการ Update ไปยัง Table หรือตารางที่อยู่บน Mobile Services

Update Data (Android C# (Xamarin)  and Mobile Services)

Android C# (Xamarin) Mobile Service Update Form


สำหรับขั้นตอนนั้นก็คือสร้าง Activity คือกำหนด ID หรือค่าที่ต้องการดึงข้อมูลที่อยู่บน Table จากนั้นดึงข้อมูลมาจาก Mobile Services มาแสดงบน Activity โดย Activity นี้จะมีหน้าที่ไปดึงพวกรายละเอียดต่าง ๆ มาแสดงใน EditText เพื่อรอทำการแก้ไข Update ข้อมูล

รูปแบบการอ่านข้อมูลมาแสดงเพื่อรอการ Update
            client = new MobileServiceClient(ApplicationURL, ApplicationKey);

            TextView txtUsername = FindViewById<TextView>(Resource.Id.txtUsername);
            TextView txtPassword = FindViewById<TextView>(Resource.Id.txtPassword);
            TextView txtName = FindViewById<TextView>(Resource.Id.txtName);
            TextView txtEmail = FindViewById<TextView>(Resource.Id.txtEmail);
            TextView txtTel = FindViewById<TextView>(Resource.Id.txtTel);

            memberTable = client.GetTable<MyMember>();

            //*** Get Data Info ***//
            var info = await memberTable.Where(item => item.Username == strUsername).ToCollectionAsync();
            if (info.Count > 0)
            {
                MyMember member = info[0];
                txtUsername.Text = member.Username.ToString();
                txtPassword.Text = member.Password.ToString();
                txtName.Text = member.Name.ToString();
                txtEmail.Text = member.Email.ToString();
                txtTel.Text = member.Tel.ToString();
            }

รูปแบบการ Update ข้อมูลและบันทึกไปยัง Mobile Services
          client = new MobileServiceClient(ApplicationURL, ApplicationKey);

            //*** Get Data for Update ***//
            var update = await memberTable.Where(item => item.Username == strUsername).ToCollectionAsync();
            if (update.Count > 0)
            {
                TextView txtUsername = FindViewById<TextView>(Resource.Id.txtUsername);
                TextView txtPassword = FindViewById<TextView>(Resource.Id.txtPassword);
                TextView txtName = FindViewById<TextView>(Resource.Id.txtName);
                TextView txtEmail = FindViewById<TextView>(Resource.Id.txtEmail);
                TextView txtTel = FindViewById<TextView>(Resource.Id.txtTel);

                MyMember member = update[0];
                member.Name = txtName.Text;
                member.Password = txtPassword.Text;
                member.Name = txtName.Text;
                member.Email = txtEmail.Text;
                member.Tel = txtTel.Text;

                //*** Update Record ***/
                await memberTable.UpdateAsync(member);

                AlertDialog.Builder builder = new AlertDialog.Builder(this);
                AlertDialog alert = builder.Create();
                alert.SetTitle("Result");
                alert.SetMessage("Update Data Successfully");
                alert.Show();
            }


Example ตัวอย่างการทำระบบแก้ไข Update Data ด้วย Android C# (Xamarin)

Update Data (Android C# (Xamarin)  and Mobile Services)

ตอนนี้เรามี Mobile Service อยู่ 1 รายการ

Update Data (Android C# (Xamarin)  and Mobile Services)

ชื่อตารางว่า MyMember

Update Data (Android C# (Xamarin)  and Mobile Services)

มีข้อมูลอยู่ทั้งหมด 3 รายการ








กลับมายัง Android C# Project บน Visual Studio

Main.axml

Update Data (Android C# (Xamarin)  and Mobile Services)

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tableLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="Update Form "
            android:layout_span="1"
            android:textAppearance="?android:attr/textAppearanceLarge" />
    </TableRow>
    <View
        android:layout_height="1dip"
        android:background="#CCCCCC" />
    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.1"
        android:orientation="horizontal">
        <TableRow>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Username "
                android:textAppearance="?android:attr/textAppearanceMedium" />
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:text=" = " />
            <TextView
                android:id="@+id/txtUsername"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Username" />
        </TableRow>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Input Password"
            android:textAppearance="?android:attr/textAppearanceMedium" />
        <EditText
            android:id="@+id/txtPassword"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:inputType="textPassword"
            android:ems="10" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Input Name :"
            android:textAppearance="?android:attr/textAppearanceMedium" />
        <EditText
            android:id="@+id/txtName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:ems="10" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Input Email :"
            android:textAppearance="?android:attr/textAppearanceMedium" />
        <EditText
            android:id="@+id/txtEmail"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:inputType="textEmailAddress"
            android:ems="10" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Input Tel :"
            android:textAppearance="?android:attr/textAppearanceMedium" />
        <EditText
            android:id="@+id/txtTel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:inputType="phone"
            android:ems="10" />
        <Button
            android:id="@+id/btnSave"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Save" />
    </TableLayout>
</TableLayout>

MainActivity.cs
using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;

using Microsoft.WindowsAzure.MobileServices;
using Newtonsoft.Json;

namespace myFirstApps
{
    public class MyMember
    {
        public int Id { get; set; }

        [JsonProperty(PropertyName = "username")]
        public string Username { get; set; }

        [JsonProperty(PropertyName = "password")]
        public string Password { get; set; }

        [JsonProperty(PropertyName = "name")]
        public string Name { get; set; }

        [JsonProperty(PropertyName = "email")]
        public string Email { get; set; }

        [JsonProperty(PropertyName = "tel")]
        public string Tel { get; set; }
    }

    [Activity(Label = "myFirstApps", MainLauncher = true, Icon = "@drawable/icon")]
    public class MainActivity : Activity
    {

        public const string ApplicationURL = @"https://thaicreate.azure-mobile.net/";
        public const string ApplicationKey = @"wXYfvYuGLIaDCZdqHjTwDgeDSHZOtL94";

        private MobileServiceClient client; // Mobile Service Client references
        private IMobileServiceTable<MyMember> memberTable; // Mobile Service Table used to access data   

        string strUsername = "surachai";

        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            LoadInfo();

            // Save
            Button btnSave = FindViewById<Button>(Resource.Id.btnSave);
            btnSave.Click += (object sender, EventArgs e) =>
            {
                btnSaveClick(sender, e);
            };

        }

        private async void LoadInfo()
        {
            client = new MobileServiceClient(ApplicationURL, ApplicationKey);

            TextView txtUsername = FindViewById<TextView>(Resource.Id.txtUsername);
            TextView txtPassword = FindViewById<TextView>(Resource.Id.txtPassword);
            TextView txtName = FindViewById<TextView>(Resource.Id.txtName);
            TextView txtEmail = FindViewById<TextView>(Resource.Id.txtEmail);
            TextView txtTel = FindViewById<TextView>(Resource.Id.txtTel);

            memberTable = client.GetTable<MyMember>();

            //*** Get Data Info ***//
            var info = await memberTable.Where(item => item.Username == strUsername).ToCollectionAsync();
            if (info.Count > 0)
            {
                MyMember member = info[0];
                txtUsername.Text = member.Username.ToString();
                txtPassword.Text = member.Password.ToString();
                txtName.Text = member.Name.ToString();
                txtEmail.Text = member.Email.ToString();
                txtTel.Text = member.Tel.ToString();
            }

        }


        private async void btnSaveClick(object sender, EventArgs e)
        {
            client = new MobileServiceClient(ApplicationURL, ApplicationKey);
            memberTable = client.GetTable<MyMember>();
            //*** Get Data for Update ***//
            var update = await memberTable.Where(item => item.Username == strUsername).ToCollectionAsync();
            if (update.Count > 0)
            {
                TextView txtUsername = FindViewById<TextView>(Resource.Id.txtUsername);
                TextView txtPassword = FindViewById<TextView>(Resource.Id.txtPassword);
                TextView txtName = FindViewById<TextView>(Resource.Id.txtName);
                TextView txtEmail = FindViewById<TextView>(Resource.Id.txtEmail);
                TextView txtTel = FindViewById<TextView>(Resource.Id.txtTel);

                MyMember member = update[0];
                member.Name = txtName.Text;
                member.Password = txtPassword.Text;
                member.Name = txtName.Text;
                member.Email = txtEmail.Text;
                member.Tel = txtTel.Text;

                //*** Update Record ***/
                await memberTable.UpdateAsync(member);

                AlertDialog.Builder builder = new AlertDialog.Builder(this);
                AlertDialog alert = builder.Create();
                alert.SetTitle("Result");
                alert.SetMessage("Update Data Successfully");
                alert.Show();
            }

        }



    }
}









ในตัวอย่างที่ทดสอบดึงข้อมูล Username ของ surachai
 string strUsername = "surachai";

ทดสอบการทำงาน

Update Data (Android C# (Xamarin)  and Mobile Services)

แสดงรายการสำหรับ Update

Update Data (Android C# (Xamarin)  and Mobile Services)

ทดสอบแก้ไขข้อมูล

Update Data (Android C# (Xamarin)  and Mobile Services)

หลังจากที่แก้ไขข้อมูลเรียบร้อยแล้ว

Update Data (Android C# (Xamarin)  and Mobile Services)

เมื่อกลับไปดู DATA ที่ Mobile Services ข้อมูลก็จะถูกแก้ไข Update


.

   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2014-09-23 13:17:24 / 2017-03-26 21:03:19
  Download : No files
 Sponsored Links / Related

 
ตอนที่ 1 : รู้จัก Android C# (Xamarin) Mobile Services บน Windows Azure คืออะไร
Rating :

 
ตอนที่ 2 : การสร้าง Android C# (Xamarin) Mobile Services และการเรียกใช้งานแบบง่าย ๆ
Rating :

 
ตอนที่ 3 : Android C# (Xamarin) สร้างตาราง Table บน Mobile Services และการ Insert ข้อมูล
Rating :

 
ตอนที่ 4 : Android C# (Xamarin) อ่าน Data จาก Table ของ Mobile Services และแสดงผลบน App
Rating :

 
ตอนที่ 5 : Show Case 1 : Register Form (Android C# (Xamarin) and Mobile Services)
Rating :

 
ตอนที่ 6 : Show Case 2 : Login User Password (Android C# (Xamarin) and Mobile Services)
Rating :

 
ตอนที่ 8 : Show Case 4 : Delete Data (Android C# (Xamarin) and Mobile Services)
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่