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.content.Context; | |
import android.util.DisplayMetrics; | |
public class isTablet { | |
double size_device; | |
public double tabletSize(Context context) { | |
double size = 0; | |
try { | |
// Compute screen size |
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 models; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
import android.util.Log; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.LinkedList; | |
import java.util.List; |
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 models; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
public class ArticlesPhotosModel implements Parcelable { | |
public static final String CN_PHOTOS = "photos"; | |
public static final String CN_RETINA3X = "retina3x"; |
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 models; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
/** | |
* Created by @moizest89 in SV on 8/14/15. | |
*/ | |
public class ArticlesVideosModel implements Parcelable{ |
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
//Data methods | |
private void getValuesUrl(){ | |
Log.e("fragment", URL_CONNECTION); | |
JsonObjectRequest request = new JsonObjectRequest(this.URL_CONNECTION, null, | |
new Response.Listener<JSONObject>() { | |
@Override | |
public void onResponse(JSONObject response) { | |
//System.out.print("response: "+response); | |
setValuesUrl(response); | |
} |
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
private AQuery aq; | |
private Bitmap preset; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
this.aq= new AQuery(this.context); | |
this.preset= aq.getCachedImage(R.drawable.placeholder_slider); //Holder para que cargen las imagenes | |
} |
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 java.io.IOException; | |
import java.util.List; | |
import java.util.Locale; | |
import android.app.AlertDialog; | |
import android.app.Service; | |
import android.content.Context; | |
import android.content.DialogInterface; | |
import android.content.Intent; | |
import android.location.Address; |
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
<android.support.v7.widget.Toolbar | |
android:id="@+id/toolbar" | |
android:layout_width="match_parent" | |
android:layout_height="?attr/actionBarSize" | |
android:background="?attr/colorPrimary" | |
app:layout_scrollFlags="scroll|enterAlways" | |
app:popupTheme="@style/AppTheme.PopupOverlay"> | |
<ImageView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" |
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
Adapter mAdapter = new Adapter(); | |
mAdapter.setOnItemClickListener(new OnItemClickListener() { | |
@Override | |
public void onItemClickListener(View view, int position) { | |
//To-do something | |
} | |
}); |
OlderNewer