-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSignOthers.java
More file actions
51 lines (37 loc) · 1.53 KB
/
SignOthers.java
File metadata and controls
51 lines (37 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.example.abans_000.docplus;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.widget.EditText;
import android.widget.RadioGroup;
import com.microsoft.windowsazure.mobileservices.*;
import com.microsoft.windowsazure.mobileservices.http.ServiceFilterResponse;
import com.microsoft.windowsazure.mobileservices.table.TableOperationCallback;
import org.apache.commons.logging.Log;
public class SignOthers extends ActionBarActivity {
private MobileServiceClient mClient;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sign_others);
EditText otname = (EditText) findViewById(R.id.otname);
RadioGroup otradiogp = (RadioGroup) findViewById(R.id.otradiogp);
int checked = otradiogp.getCheckedRadioButtonId();
/*mClient = new MobileServiceClient(
"https://docplus.azurewebsites.net",
this
);
OthersSignUp item = new OthersSignUp();
item.Name= "Ayush";
mClient.getTable(OthersSignUp.class).insert(item, new TableOperationCallback<OthersSignUp>() {
@Override
public void onCompleted(OthersSignUp othersSignUp, Exception e1, ServiceFilterResponse serviceFilterResponse) {
if(e1==null)
{
}
else
{
}
}
}); */
}
}