Showing posts with label v2. Show all posts
Showing posts with label v2. Show all posts

Tuesday, January 31, 2017

M706 MB V2 1 Zentality C727 MT6572 100 tested

M706 MB V2 1 Zentality C727 MT6572 100 tested


M706-MB-V2.1

MT6572_alps_C-727_C-727.JB3.MP.V1.12_20160330_124548












for password # uzzal_computer@yahoo.com
call # 01712804630

https://drive.google.com/open?id=0B2tJf3FteNrRSGgwajV4ZWpNZ2M


Available link for download

Read more »

Monday, January 16, 2017

Membuat Slider Cover Flow Transition di Android Widget V2

Membuat Slider Cover Flow Transition di Android Widget V2


Tutorial Android Terbaru - Membuat Slider Cover Flow Transition di Android - Tips dan Cara membuat Animasi Slider CoverFlow pada Android. Tutorial akan menunjukkan bagaimana cara untuk membuat image slider pada android, silahkan dicoba untuk pengembangan lebih lanjut.

Slider Cover Flow Transition di Android Widget V2
Slider Cover Flow Transition di Android Widget V2
Latar Belakang
Ide dasarnya adalah bahwa widget memainkannya bekerja sangat mirip standar Android Gallery widget, tapi dengan penambahan rotasi gambar. 

Cara Menggunakan
Dalam proyek Android Anda menciptakan sebuah paket bernama com.coverflow, dan di tempat ini kelas memainkannya. Sekarang semua yang Anda butuhkan adalah untuk instantiate widget memainkannya dalam contoh ini kelas aktivitas disebut CoverflowExample. CoverFlowExample hanya memperluas Kegiatan dan instantiates kelas memainkannya dalam metode OnCreate itu. Ia juga memiliki kelas internal ImageAdapter yang kita gunakan sebagai adaptor untuk widget memainkannya, seperti yang kita lakukan untuk widget Gallery. Hal ini juga memungkinkan untuk menggunakan widget memainkannya bila ditentukan dalam file layout XML.

Berikut untuk script yang bisa anda coba :
package com.example.coverflow;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.LinearGradient;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.PorterDuffXfermode;
import android.graphics.Bitmap.CompressFormat;
import android.graphics.Bitmap.Config;
import android.graphics.PorterDuff.Mode;
import android.graphics.Shader.TileMode;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.ImageView.ScaleType;
public class CoverFlowExample extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
CoverFlow coverFlow;
coverFlow = new CoverFlow(this);
coverFlow.setAdapter(new ImageAdapter(this));
ImageAdapter coverImageAdapter = new ImageAdapter(this);
coverImageAdapter.createReflectedImages();
coverFlow.setAdapter(coverImageAdapter);
coverFlow.setSpacing(-15);
coverFlow.setSelection(8, true);
setContentView(coverFlow);
//Use this if you want to use XML layout file
//setContentView(R.layout.main);
//coverFlow = (CoverFlow) findViewById(R.id.coverflow);
}
public class ImageAdapter extends BaseAdapter {
int mGalleryItemBackground;
private Context mContext;
private FileInputStream fis;
private Integer[] mImageIds = {
R.drawable.kasabian_kasabian,
R.drawable.starssailor_silence_is_easy,
R.drawable.killers_day_and_age,
R.drawable.garbage_bleed_like_me,
R.drawable.death_cub_for_cutie_the_photo_album,
R.drawable.kasabian_kasabian,
R.drawable.massive_attack_collected,
R.drawable.muse_the_resistance,
R.drawable.starssailor_silence_is_easy
};
private ImageView[] mImages;
public ImageAdapter(Context c) {
mContext = c;
mImages = new ImageView[mImageIds.length];
}
public boolean createReflectedImages() {
//The gap we want between the reflection and the original image
final int reflectionGap = 4;
int index = 0;
for (int imageId : mImageIds) {
Bitmap originalImage = BitmapFactory.decodeResource(getResources(),
imageId);
int width = originalImage.getWidth();
int height = originalImage.getHeight();
//This will not scale but will flip on the Y axis
Matrix matrix = new Matrix();
matrix.preScale(1, -1);
//Create a Bitmap with the flip matrix applied to it.
//We only want the bottom half of the image
Bitmap reflectionImage = Bitmap.createBitmap(originalImage, 0, height/2, width, height/2, matrix, false);
//Create a new bitmap with same width but taller to fit reflection
Bitmap bitmapWithReflection = Bitmap.createBitmap(width
, (height + height/2), Config.ARGB_8888);
//Create a new Canvas with the bitmap thats big enough for
//the image plus gap plus reflection
Canvas canvas = new Canvas(bitmapWithReflection);
//Draw in the original image
canvas.drawBitmap(originalImage, 0, 0, null);
//Draw in the gap
Paint deafaultPaint = new Paint();
canvas.drawRect(0, height, width, height + reflectionGap, deafaultPaint);
//Draw in the reflection
canvas.drawBitmap(reflectionImage,0, height + reflectionGap, null);
//Create a shader that is a linear gradient that covers the reflection
Paint paint = new Paint();
LinearGradient shader = new LinearGradient(0, originalImage.getHeight(), 0,
bitmapWithReflection.getHeight() + reflectionGap, 0x70ffffff, 0x00ffffff,
TileMode.CLAMP);
//Set the paint to use this shader (linear gradient)
paint.setShader(shader);
//Set the Transfer mode to be porter duff and destination in
paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));
//Draw a rectangle using the paint with our linear gradient
canvas.drawRect(0, height, width,
bitmapWithReflection.getHeight() + reflectionGap, paint);
ImageView imageView = new ImageView(mContext);
imageView.setImageBitmap(bitmapWithReflection);
imageView.setLayoutParams(new CoverFlow.LayoutParams(120, 180));
imageView.setScaleType(ScaleType.MATRIX);
mImages[index++] = imageView;
}
return true;
}
public int getCount() {
return mImageIds.length;
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
//Use this code if you want to load from resources
//ImageView i = new ImageView(mContext);
//i.setImageResource(mImageIds[position]);
//i.setLayoutParams(new CoverFlow.LayoutParams(130, 130));
//i.setScaleType(ImageView.ScaleType.MATRIX);
//return i;
return mImages[position];
}
/** Returns the size (0.0f to 1.0f) of the views
* depending on the offset to the center. */
public float getScale(boolean focused, int offset) {
/* Formula: 1 / (2 ^ offset) */
return Math.max(0, 1.0f / (float)Math.pow(2, Math.abs(offset)));
}
}
}
karena script terlalu panjang, silahkan download filenya langsung untuk di coba.
Download Slider Cover Flow Transition di Android Widget V2

Sumber : http://www.inter-fuser.com/2010/01/android-coverflow-widget.html


Available link for download

Read more »

Tuesday, January 10, 2017

MARVEL Future Fight v2 3 0 APK Terbaru 2016 Gratis Download Tutorial Softwere dan Aplikasi MOD

MARVEL Future Fight v2 3 0 APK Terbaru 2016 Gratis Download Tutorial Softwere dan Aplikasi MOD


MARVEL Future Fight v2.3.0 APK Terbaru 2016 Gratis Download : Salam buat teman teman semua, semoga hari ini bermanfaat, amin. Seperti yang biasanya disini saya akan memberikan Update terbaru dari Game Andorid yang saat ini sedang populer dikalangan masyarakat luas, ya mungkin game android ini lebih simpel dan juga bisa di mainkan di mana-mana sesuai dengan keinginan kita, Nah game yang akan

from Erfandy Tokek Android | Kumpulan Aplikasi Keren dan Game Android Terbaru http://ift.tt/29VnS3j
MARVEL Future Fight v2.3.0 APK Terbaru 2016 Gratis Download - Tutorial Softwere dan Aplikasi MOD


Available link for download

Read more »

Tuesday, December 20, 2016

IP BOX V2 Ip High speed programmer Ver 1 4 Setup Here

IP BOX V2 Ip High speed programmer Ver 1 4 Setup Here


IP-BOX V2>Ip High speed programmer Ver 1.4 released - Its Rocket Queen


Ver 1.4 news:

New Update Support Change Mobile colour

Unofficial support site by Welcome zone Haldwani

New Update you can back the boot1 and boot2 data(save the moble disk info and mobile snwifi tmodel info)

and more...

Software Link: Click Here


Available link for download

Read more »

Thursday, December 15, 2016

Lava Pixel V2 PC Suite USB Driver Download

Lava Pixel V2 PC Suite USB Driver Download


Lava Pixel V2 has 5.70 Inch (720X1280) pixel Display powered by 1GHz Quad Core Processor with 2GB RAM and 13 MP rear camera and 8 MP front camera. Android 5.1 operating system and 2500mAh battery capacity.


If you want to connect your smartphone to your computer, then you must use your smartphones PC Suite, it is a software that enables data transfer between mobile device and computer. You can also backup your phones data. In short, we said that PC Suite is an easy and perfect way to connect smartphone to your computer.

Lava Pixel V2 PC Suite USB Driver

Lava Pixel V2 PC Suite USB Driver Download

Incoming Search Terms: 
Lava PC Suite Download, Lava Pixel V2 USB Driver, Lava Pixel V2, Free PC Suite, Lava Pixel V2 PC Suite Download


Available link for download

Read more »

Sunday, December 4, 2016

IP BOX V2 Ver 1 6 Setup Here

IP BOX V2 Ver 1 6 Setup Here


IP-BOX V2 Ip High speed programmer Ver 1.6 released


News:
Add New Flash Support:
H2JTDG8UD3MBR
THGBX3G7D2KLA0C
SDMFLBCB2_016G

Adjust erase full flash,now more fast!!!

Software Here: 


Available link for download

Read more »

Monday, November 7, 2016

iPhone PC Suite 2016 Latest Version v2 9 35 186 Free Download For Windows

iPhone PC Suite 2016 Latest Version v2 9 35 186 Free Download For Windows


iPhone PC Suite 2016 Latest Version v2.9.35.186 Free Download For Windows


You are downloading iPhone PC Suite 2016 Latest Version v2.9.35.186 available to free download for windows 7, 8, xp, 32bit, 64bit, and vista. iPhone PC Suite 2016 Latest Version v2.9.35.186 is a latest updated released for all windows operating system. iPhone PC Suite 2016 Latest Version v2.9.35.186 has been developed by to bring the users a free alternative for device pc suite. iPhone PC Suite 2016 Latest Version v2.9.35.186 is only supported by only iphone mobile devices. You have access to a great resource baseand some of its features. You must download iPhone PC Suite 2016 Latest Version v2.9.35.186 and enjoy it its latest features.


Screen Shoots Of iPhone PC Suite 2016 Latest Version v2.9.35.186 :



Features of iPhone PC Suite 2016 Latest Version v2.9.35.186 :

  • Supported by 32bit and 64bit.
  • Back up calls and sms.
  • Contacts
  • Download ringtones, themes, wallpapers and applications.
  • Log off and reboot.
  • Practical RSS subscription.
  • Perfect Ul performance.
  • Also support for the ipone 3.0 firmware.
  • Management phone software.
  • Phone process and system registry management.
  • Calendar and schedule management.
  • Caller location inquiry.
If you want to free download latest version of iphone PC suite, go to end of this page and just click here to free download iPhone PC Suite 2016 Latest Version v2.9.35.186…



Download iPhone PC Suite 2016 Latest Version v2.9.35.186>> (39.4MB)


Available link for download

Read more »

Monday, October 10, 2016

Kumpulan BBM MOD Windows Phone WP v2 13 1 14 APK Terbaru 2016 Gratis Download Tutorial Softwere dan Aplikasi MOD

Kumpulan BBM MOD Windows Phone WP v2 13 1 14 APK Terbaru 2016 Gratis Download Tutorial Softwere dan Aplikasi MOD


Upadate : Download BBM MOD Windows Phone versi 2.13.1.14 APK Kumpulan BBM MOD Windows Phone (WP) v2.13.1.14 APK Terbaru 2016 Gratis Download : salam buat  teman teman semua semoga hari ini Sehat semua, amin. Seperti yang biasanya, disini saya akan memberikan Update terbaru tentang Kumpulan BBM MOD teman teman bisa memilih sesuka hati dan BBM MOD WP yang akan saya bagikan ini secara gratis

from Erfandy Tokek Android | Kumpulan Aplikasi Keren dan Game Android Terbaru http://ift.tt/1RFWC4s
Kumpulan BBM MOD Windows Phone (WP) v2.13.1.14 APK Terbaru 2016 Gratis Download- Tutorial Softwere dan Aplikasi MOD


Available link for download

Read more »