Monday, October 31, 2011

[android-developers] Google Analytics SDK?

Is anyone using the Google Analytics SDK in their Android app? We're
taking a look at it for campaign tracking, and I'm curious if anyone
out there has had a conclusive experience with it. Good? Bad? Okay?
Comparable SDKs we might use?

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [id-android] Re: WTShare:Galaxy Tab 7 +

Yang tulisan [/img] di remove aja bro :)

@ini_bal

On Nov 1, 2011 8:30 AM, "Erwin Fransiscus" <k.xiao.l@gmail.com> wrote:

linknya koq ga bs dibuka bro..?

--
Sincerely yours,
Erwin Fransiscus

sent from HD2 Gingerbread

On Nov 1, 2011 2:44 AM, "daeng EKY" <ekystyawan@gmail.com> wrote:
[Img]http://www.yangcanggih.com/wp-content/uploads/2011/10/Samsung-
Galaxy-Tab-7-Plus-Promo-2.jpg[/img]


On Oct 31, 11:27 am, dabtrip...@gmail.com wrote:
> Kalo ga salah bonus xl free 12bulan..
> Sent from my BlackBerry® smartphone from Sinyal Bagus XL, Nyambung Teruuusss...!

--
"Indonesian Android Community"  Join: http://forum.android.or.id

===============
Join ID-ANDROID Developers
http://groups.google.com/group/id-android-dev
---------------------
Gunakan Paket Unlimited Data XL Mobile Broadband
http://www.xl.co.id/XLInternet/BroadbandInternet
--------------------
PING'S Mobile - Plaza Semanggi
E-mail: info@pings-mobile.com Ph. 021-25536796
--------------------
i-gadget Store - BEC Bandung
E-mail: ary@i-gadgetstore.com Ph. 0812-21111191
--------------------
Toko EceranShop - BEC  Bandung
E-mail: willy@eceranshop.com  Ph. 0815-56599888
===============

Aturan Jualan dan Kloteran ID-Android http://goo.gl/YBN21

--
"Indonesian Android Community" Join: http://forum.android.or.id
 
===============
Join ID-ANDROID Developers
http://groups.google.com/group/id-android-dev
---------------------
Gunakan Paket Unlimited Data XL Mobile Broadband
http://www.xl.co.id/XLInternet/BroadbandInternet
--------------------
PING'S Mobile - Plaza Semanggi
E-mail: info@pings-mobile.com Ph. 021-25536796
--------------------
i-gadget Store - BEC Bandung
E-mail: ary@i-gadgetstore.com Ph. 0812-21111191
--------------------
Toko EceranShop - BEC Bandung
E-mail: willy@eceranshop.com Ph. 0815-56599888
===============
 
Aturan Jualan dan Kloteran ID-Android http://goo.gl/YBN21

--
"Indonesian Android Community" Join: http://forum.android.or.id
 
===============
Join ID-ANDROID Developers
http://groups.google.com/group/id-android-dev
---------------------
Gunakan Paket Unlimited Data XL Mobile Broadband
http://www.xl.co.id/XLInternet/BroadbandInternet
--------------------
PING'S Mobile - Plaza Semanggi
E-mail: info@pings-mobile.com Ph. 021-25536796
--------------------
i-gadget Store - BEC Bandung
E-mail: ary@i-gadgetstore.com Ph. 0812-21111191
--------------------
Toko EceranShop - BEC Bandung
E-mail: willy@eceranshop.com Ph. 0815-56599888
===============
 
Aturan Jualan dan Kloteran ID-Android http://goo.gl/YBN21

[id-android] WTB: SGS2 CDMA

Pagi rr.. mungkin ada yg mau jual as subject or ada yg bisa kasi rekomendasi beli di mana..
bisa japri ke
sandy_surf4ever@yahoo.com

Thanks all...

--
"Indonesian Android Community" Join: http://forum.android.or.id
 
===============
Join ID-ANDROID Developers
http://groups.google.com/group/id-android-dev
---------------------
Gunakan Paket Unlimited Data XL Mobile Broadband
http://www.xl.co.id/XLInternet/BroadbandInternet
--------------------
PING'S Mobile - Plaza Semanggi
E-mail: info@pings-mobile.com Ph. 021-25536796
--------------------
i-gadget Store - BEC Bandung
E-mail: ary@i-gadgetstore.com Ph. 0812-21111191
--------------------
Toko EceranShop - BEC Bandung
E-mail: willy@eceranshop.com Ph. 0815-56599888
===============
 
Aturan Jualan dan Kloteran ID-Android http://goo.gl/YBN21

[android-developers] problem:FingerPaint using surfaceview

Hello,

I'm trying to create a finger paint application using surfaceview.
I have tried and able to paint on the screen using view but when I use
surfaceview
,I can't draw on the screen.

can anybody tell me how to solve this problem.

CODE

Main Activity

public class MainAct extends Activity {
DrawView drawView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Set full screen view

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
requestWindowFeature(Window.FEATURE_NO_TITLE);

drawView = new DrawView(this);
setContentView(drawView);
drawView.requestFocus();
}
}

DrawView.class


public class DrawView extends SurfaceView implements
SurfaceHolder.Callback{
private static final String TAG = "DrawView";

List<Point> points = new ArrayList<Point>();
Paint paint = new Paint();
Thread mainLoop = null;

public DrawView(Context context) {
super(context);

getHolder().addCallback(this);
setFocusable(true);
setFocusableInTouchMode(true);
paint.setAntiAlias(true);
paint.setColor(Color.WHITE);
paint.setAntiAlias(true);
}
public void doDraw(){
Canvas canvas = getHolder().lockCanvas();
canvas.drawColor(Color.BLACK);
canvas.drawCircle(50, 50, 50, paint);
for (Point point : points) {
canvas.drawCircle(point.x, point.y, 25, paint);
// Log.d(TAG, "Painting: "+point);

}
getHolder().unlockCanvasAndPost(canvas);
}

@Override
public void surfaceChanged(SurfaceHolder holder, int format, int
width,
int height) {
// TODO Auto-generated method stub

}

@Override
public void surfaceCreated(SurfaceHolder holder) {
// TODO Auto-generated method stub
Log.d(getClass().getName(), "surfaceCreated");
doDraw();
}

@Override
public void surfaceDestroyed(SurfaceHolder holder) {
// TODO Auto-generated method stub

}
@Override
public boolean onTouchEvent(MotionEvent event) {
// if(event.getAction() != MotionEvent.ACTION_DOWN)
//return super.onTouchEvent(event);
Point point = new Point();
point.x = event.getX();
point.y = event.getY();
points.add(point);
Log.d(TAG, "point: " + point);
return super.onTouchEvent(event);
}
}

class Point {
float x, y;

@Override
public String toString() {
return x + ", " + y;
}
}

Thank you
Hassy

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[id-android] WTA Harga Gtab 7" 16GB Ruim BNIB

Dear RR,

sesuai subject, berapa sih pasaran harga Gtab 7" 16GB Ruim BNIB?

coba cari2 di toko online tapi bingung baca tipenya.

kebetulan temen ada yg dapet hadiah itu dari beli apartemen dan mau dijual lagi. kira2 Rp4.2jt kemahalan gak?

--
--
Be first, be better, or cheat.™

--
"Indonesian Android Community" Join: http://forum.android.or.id
 
===============
Join ID-ANDROID Developers
http://groups.google.com/group/id-android-dev
---------------------
Gunakan Paket Unlimited Data XL Mobile Broadband
http://www.xl.co.id/XLInternet/BroadbandInternet
--------------------
PING'S Mobile - Plaza Semanggi
E-mail: info@pings-mobile.com Ph. 021-25536796
--------------------
i-gadget Store - BEC Bandung
E-mail: ary@i-gadgetstore.com Ph. 0812-21111191
--------------------
Toko EceranShop - BEC Bandung
E-mail: willy@eceranshop.com Ph. 0815-56599888
===============
 
Aturan Jualan dan Kloteran ID-Android http://goo.gl/YBN21

[android-developers] Re: Can GPS work without internet access in Android phone?

Hi, Kristopher

Thank you for your reply.
The test I did before is indoor.
After someone give me a hint, I do a test outdoor, it worked, it can
get the position.
To get the first point of position, I waited around 15 minutes.


Thanks and Regards,
Kenneth


On 10月31日, 下午6時55分, Kristopher Micinski <krismicin...@gmail.com>
wrote:
> And you were also outside during these 15 minutes?
>
> Kris
>
>
>
>
>
>
>
> On Mon, Oct 31, 2011 at 1:01 AM, Kenneth WON <kenneth...@gmail.com> wrote:
> > Hi, Kristopher,
>
> > Thank you for your reply. Yes, I waited it more than 15 minutes. And
> > following is my code, I have no idea where's wrong, please feel free
> > to have a look, and If you don't mind, please give me some hints Thank
> > you!
>
> > import android.app.Service; import android.content.Intent; import
> > android.location.Location; import
> > android.location.LocationListener; import
> > android.location.LocationManager; import android.os.Binder; import
> > android.os.Bundle; import android.os.Handler; import
> > android.os.IBinder; import android.util.Log; public class GPSService
> > extends Service implements LocationListener {   private Handler
> > requestLocUpdateHandler = new Handler();   private LocationManager
> > locationMgr;   private static int locUpdateTime = 30000;   // Bind for
> > Service Connection   class GPSServiceBinder extends Binder {
> > GPSService getService() {       return GPSService.this;     }   }   //
> > define ACTION   public static final String ACTION = "GPS Service
> > Broadcast";   @Override   public void onCreate() {
> > super.onCreate();     locationMgr =
> > (LocationManager) getSystemService(LOCATION_SERVICE);
> > requestLocUpdateHandler.postDelayed(requestLocUpdateTask, 1000);   }
> > private void updateLocStatus(Location loc) {     if (loc != null) {
> >     double latitude = loc.getLatitude();       double longitude =
> > loc.getLongitude();       long locTime = loc.getTime();       String
> > dateTime = Utils.dateFormat.format(locTime);       Log.w("Location
> > Info", loc.getAccuracy() + " | " + loc.getProvider());
> > Log.w("GPS", "Time: " + dateTime + " | Lat: " + latitude + " | Long: "
> > + longitude);     }   }   private Runnable requestLocUpdateTask = new
> > Runnable() {     @Override     public void run() {
> > requestLocUpdate();
> > requestLocUpdateHandler.postDelayed(requestLocUpdateTask, locUpdateTime);
> >   }   };   private void requestLocUpdate() {
> > locationMgr.removeUpdates(this);
> > locationMgr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 3000,
> > 0, this);   }   @Override   public IBinder onBind(Intent arg0) {
> > return new GPSServiceBinder();   }   @Override   public void
> > onRebind(Intent intent) {   }   @Override   public boolean
> > onUnbind(Intent intent) {     return true;   }   @Override   public
> > void onLocationChanged(Location location) {
> > updateLocStatus(location);   }   @Override   public void
> > onProviderDisabled(String provider) {   }   @Override   public void
> > onProviderEnabled(String provider) {   }   @Override   public void
> > onStatusChanged(String provider, int status, Bundle extras) {   }
> > @Override   public void onDestroy() {     super.onDestroy();
> > locationMgr.removeUpdates(this);   }   @Override   public void
> > onStart(Intent intent, int startId) {     super.onStart(intent,
> > startId);   } }
> > Thanks and Regards, Kenneth Won
>
> > On 10月31日, 上午11時22分, Kristopher Micinski <krismicin...@gmail.com>
> > wrote:
> >> Cold starts can take up to 15 minutes...
>
> >> Did you wait 15 minutes...
>
> >> On Sun, Oct 30, 2011 at 11:17 PM, Kenneth WON <kenneth...@gmail.com> wrote:
> >> > Hi, lbendlin,
>
> >> > Thank you for your reply.
> >> > I am really facing this issue.
> >> > When I turn off the Network (WiFi and/or cell network), the app cannot
> >> > obtain (GPS / A-GPS) position.
> >> > Then I turn the network on, it can get the (GPS / A-GPS) position
> >> > successfully.
> >> > What's wrong?
>
> >> > Thanks and Regards,
> >> > Kenneth Won
>
> >> > On 10月31日, 上午8時30分, lbendlin <l...@bendlin.us> wrote:
> >> >> GPS can work very well without internet access - after it got the first
> >> >> fix.  The internet access is used to download satellite position data to
> >> >> the GPS receiver which speeds up the TTFF (time to first fix).  Without the
> >> >> extra help the first fix can take quite some time, especially when you are
> >> >> already moving.
>
> >> >> Go to a location with unobstructed sky view and let the GPS receiver get a
> >> >> fix. Then check how it performs on subsequent fixes.
>
> >> > --
> >> > You received this message because you are subscribed to the Google
> >> > Groups "Android Developers" group.
> >> > To post to this group, send email to android-developers@googlegroups.com
> >> > To unsubscribe from this group, send email to
> >> > android-developers+unsubscribe@googlegroups.com
> >> > For more options, visit this group at
> >> >http://groups.google.com/group/android-developers?hl=en
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Developers" group.
> > To post to this group, send email to android-developers@googlegroups.com
> > To unsubscribe from this group, send email to
> > android-developers+unsubscribe@googlegroups.com
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [id-android] WTI : ZTE Light Plus Tab sudah tersedia for sale

Ada promo cicilan 0% kah?
Boleh jg nih. Reviewnya gmn ya, ada yg bisa sharing.
Thanks a lot for the information.

Regards,
Frans

>
> On Oct 31, 2011 11:29 PM, "Ismail Ali" <1sm41l.ali@gmail.com> wrote:
>>
>> Akhirnya tablet ini keluar juga dengan harga Rp.2.850.000 plus bonus XL unlimited 3 bulan. Kalo berminat langsung aja meluncur ke Central Park krn ZTE lagi pameran disini.
>> Untuk spek yaitu :
>> Processor
>> 1 GHz MSM8255
>> Data transfer
>> HSDPA 7.2Mbps / HSUPA 5.76 Mbps
>> Platform
>> Android 2.3 Ginger Bread
>> Memory
>> "512 MB RAM + 8GB ROM
>> T-flash
>> slot up to 32 GB"
>> Display
>> 7" TFT / 1024*600 pixel / 16M Color / Capacitive MuitiTouch
>> Dimension
>> 190 * 110 * 12.6 mm
>> Weight
>> about 403g
>> Camera
>> Dual Camera, 0.3MP / 3.2MP
>> Battery
>> Li-ion 3400 mAh
>> Connectivity
>> Bluetooth 2.1 A2DP1.2 / WiFi / WiFi hotspot / Micro USB
>> Audio
>> Dolby Surround Sound / Audio Jack 3.5 mm
>>
>>
>>
>> --
>> "Indonesian Android Community"

--
"Indonesian Android Community" Join: http://forum.android.or.id
 
===============
Join ID-ANDROID Developers
http://groups.google.com/group/id-android-dev
---------------------
Gunakan Paket Unlimited Data XL Mobile Broadband
http://www.xl.co.id/XLInternet/BroadbandInternet
--------------------
PING'S Mobile - Plaza Semanggi
E-mail: info@pings-mobile.com Ph. 021-25536796
--------------------
i-gadget Store - BEC Bandung
E-mail: ary@i-gadgetstore.com Ph. 0812-21111191
--------------------
Toko EceranShop - BEC Bandung
E-mail: willy@eceranshop.com Ph. 0815-56599888
===============
 
Aturan Jualan dan Kloteran ID-Android http://goo.gl/YBN21
--
"Indonesian Android Community" Join: http://forum.android.or.id
 
===============
Join ID-ANDROID Developers
http://groups.google.com/group/id-android-dev
---------------------
Gunakan Paket Unlimited Data XL Mobile Broadband
http://www.xl.co.id/XLInternet/BroadbandInternet
--------------------
PING'S Mobile - Plaza Semanggi
E-mail: info@pings-mobile.com Ph. 021-25536796
--------------------
i-gadget Store - BEC Bandung
E-mail: ary@i-gadgetstore.com Ph. 0812-21111191
--------------------
Toko EceranShop - BEC Bandung
E-mail: willy@eceranshop.com Ph. 0815-56599888
===============
 
Aturan Jualan dan Kloteran ID-Android http://goo.gl/YBN21