This file contains hidden or 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
    
  
  
    
  | { | |
| "name": "Gilberto Ibarra Tellez", | |
| "birthdate": "1991-01-30", | |
| "phone": "7757526812", | |
| "email": "gilberto.ibarra@globant.com", | |
| "company": "Globant", | |
| "position": "Android Developer", | |
| "lenguages": "English/Spanish" | |
| } | 
  
    
      This file contains hidden or 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.garcia.perro.utils; | |
| import android.content.Context; | |
| import android.net.ConnectivityManager; | |
| import android.net.NetworkInfo; | |
| import com.garcia.perro.R; | |
| import com.garcia.perro.application.PerroBaseApp; | |
| import com.garcia.perro.data.models.NetError; | |
| import com.garcia.perro.mvp.base.BaseContract; | 
  
    
      This file contains hidden or 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 AsynkTaskJob<T> { | |
| private CustomAsyncTask mCustomAsyncTask; | |
| private Context context; | |
| public AsynkTaskJob(Job job) { | |
| mCustomAsyncTask = new CustomAsyncTask(job); | |
| } | 
  
    
      This file contains hidden or 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
    
  
  
    
  | /** | |
| * Created by don_gil on 06/10/2016. | |
| */ | |
| public class DialogDrawSign extends Dialog { | |
| View viewroot; | |
| private View container_sign; | |
| public DrawingView drawingview_sign; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | static Menu menu; | |
| @Override | |
| public boolean onCreateOptionsMenu(Menu menu) { | |
| MenuInflater mi = getMenuInflater(); | |
| mi.inflate(R.menu.menu_main,menu); | |
| this.menu = menu; | |
| return super.onCreateOptionsMenu(menu); | 
  
    
      This file contains hidden or 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"?> | |
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <item android:state_pressed="true"> | |
| <shape> | |
| <solid android:color="@color/blue_home_pressed" /> | |
| </shape> | |
| </item> | |
| <item android:state_focused="true"> | 
  
    
      This file contains hidden or 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
    
  
  
    
  | DisplayMetrics metrics = getResources().getDisplayMetrics(); | |
| int width = metrics.widthPixels; | |
| int height = metrics.heightPixels; | 
  
    
      This file contains hidden or 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 Splash_screen extends Activity { | |
| private static final long SPLASH_SCREEN_DELAY = 2500; | |
| @Override | |
| protected void onCreate(Bundle savedInstanceState) { | |
| super.onCreate(savedInstanceState); | |
| requestWindowFeature(Window.FEATURE_NO_TITLE); | 
  
    
      This file contains hidden or 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.content.Context; | |
| import android.graphics.Canvas; | |
| import android.util.AttributeSet; | |
| import android.widget.ListView; | |
| public class ExpandedListView extends ListView { | 
  
    
      This file contains hidden or 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.content.Context; | |
| import android.graphics.Typeface; | |
| import android.util.AttributeSet; | |
| import android.widget.EditText; | |
| public class CustomEditText extends EditText{ | |
| public CustomEditText(Context context, AttributeSet attrs, int defStyle) { | 
NewerOlder