我想为我正在开发的应用显示视频。我面临的问题是,我从一个JSON
格式的模板中显示了一个Button。
我希望Onclick
显示此按钮的layout main.xml
。我的XML内容如下。
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Play Video"
/>
<Button
android:id="@+id/playvideoplayer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="- PLAY Video -"
/>
<VideoView
android:id="@+id/videoview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
有人可以建议我如何解决这个问题。