[android-developers] Re: Android to PC communication trough USB

2010-06-01 Thread Alexander Kipar
Hi, There isn't a "system" way to do this, but there aer some tricks. You could use ADB to forward PC port to Device port and create, for example, Socket connection between them. On Jun 1, 9:11 pm, Felipe Ovalle wrote: > Hello, > anybody knows a code example for communicate one android applicatio

[android-developers] Re: Define layout at runtime

2010-05-24 Thread Alexander Kipar
RelativeLayout.LayoutParams params= new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); params.addRule(RelativeLayout.LEFT_OF, ID_OF_VIEW); On May 22, 2:35 am, carrerasrodrigo wrote: > hi!! > is there a way to define the layout_toLeftOf at runtime?? i can't find