Back to project page myAndroidApps.
The source code is released under:
This is my first GitHub try. Be gentle :)
If you think the Android project myAndroidApps listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package gidy.medappnem.videoActivities; /* w w w . j a va 2 s. co m*/ import gidy.medappnem.R; import android.net.Uri; import android.os.Bundle; import android.view.Menu; import android.widget.VideoView; public class DiabeticVideoActivity extends VideoActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTheme(R.style.MedAppTheme); setContentView(R.layout.activity_diabetic_video); logger.debug("here"); VideoView v =(VideoView) findViewById(R.id.DiabeticVideoView); String fileName = "android.resource://" + getPackageName() + "/" + R.raw.diabeticemergency; v.setVideoURI(Uri.parse(fileName)); v.start(); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.diabetic_video, menu); return true; } }