Append the following parameter to the Youtube-URL: 240p: &vq=small 360p: &vq=medium 480p: &vq=large 720p: &vq=hd720 For instance: src="http://www.youtube.com/watch?v=oDOXeO9fAg4" ...
Main Difference Between px,sp,dip is px is one pixel. sp is scale-independent pixels. dip is Density-independent pixels. 1> sp for font size 2>dip for everything else 3>dip==dp
-------------------------------------------------------------------------------------------------------------------------- MainActivity.java public class SoundEffectsInAndroidActivity extends Activity implements OnClickListener { private Button button; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // init Effects class Effects.getInstance().init(this); button = (Button)findViewById(R.id.button1); button.setOnClickListener(this); } @Override public void onClick(View v) { Effects.getInstance().playSound(Effects.SOUND_1); ...