display video resolution at videos

This commit is contained in:
tibbi
2016-10-16 17:53:02 +02:00
parent 259ec1a0e7
commit f866f01ddf
2 changed files with 17 additions and 0 deletions

View File

@ -52,6 +52,10 @@ class PropertiesDialog : DialogFragment() {
properties_duration_label.visibility = View.VISIBLE
properties_duration.visibility = View.VISIBLE
properties_duration.text = mItem.getDuration(context)
properties_resolution_label.visibility = View.VISIBLE
properties_resolution.visibility = View.VISIBLE
properties_resolution.text = mItem.getVideoResolution(context)
}
val file = File(mItem.path)