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.davemorrissey.labs.subscaleview.decoder.inputstream; | |
import android.content.Context; | |
import android.graphics.Bitmap; | |
import android.graphics.Bitmap.Config; | |
import android.graphics.BitmapFactory; | |
import android.graphics.BitmapRegionDecoder; | |
import android.net.Uri; | |
import com.davemorrissey.labs.subscaleview.decoder.DecoderFactory; |
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
/** | |
* Created by gokhanbarisaker on 8/30/15. | |
*/ | |
public class PicassoDecoder implements ImageDecoder | |
{ | |
private String tag; | |
private String picasso; | |
public PicassoDecoder(String tag, Picasso picasso) { | |
this.tag = tag; |
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 CustomSubsamplingScaleImageView extends SubsamplingScaleImageView { | |
private final AtomicBoolean scaleSet = new AtomicBoolean(false); | |
public CustomSubsamplingScaleImageView(Context context, AttributeSet attr) { | |
super(context, attr); | |
setAlpha(0); | |
} | |
public void onDraw(Canvas canvas) { |
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
<?php | |
$host="localhost"; | |
$username="******"; | |
$password="*******"; | |
$db_name="signuplist"; | |
$tbl_name="signupbydate"; | |
$myusername=$_SESSION['logname']; | |
?> | |
<html> |