This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
01-06 01:24:42.095 11422-11422/com.akexorcist.myapplication E/Check: onResponse | |
01-06 01:24:42.095 11422-11422/com.akexorcist.myapplication E/Check: Message : มีปัญหาอะไร? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
======================================= | |
Post Method | |
======================================= | |
https://vision.googleapis.com/v1/images:annotate?key=your_api_key | |
======================================= | |
Body (Raw Text/JSON) | |
======================================= | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<device-admin> | |
<uses-policies> | |
<limit-password /> | |
<watch-login /> | |
<reset-password /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.akexorcist.myapplication; | |
import android.os.Bundle; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.LinearLayout; | |
public class MainActivity extends AppCompatActivity { | |
private LinearLayout layoutRoot; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.os.Bundle; | |
import android.support.v7.app.AppCompatActivity; | |
import android.view.View; | |
import android.widget.Button; | |
public class DoSomethingActivity extends AppCompatActivity implements View.OnClickListener { | |
private Button btnBack; | |
@Override |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<uses-permission android:name="android.permission.GET_TASKS" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"status": "200", | |
"message": "success", | |
"brand_list": [ | |
"Samsung", | |
"Asus", | |
"Motorola", | |
"Sony", | |
"Amazon", | |
"Meizu", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Answer1 { | |
@SerializedName("status") | |
private String status; | |
@SerializedName("message") | |
private String message; | |
@SerializedName("brand_list") | |
private List<String> brandList = new ArrayList<>(); |