我想在android中實現視頻面板,在其中我想創建一個任務面板,其中包含諸如play,pause之類的命令。我創造了這個佈局是如何在android中實現自動隱藏任務面板
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/layout">
<VideoView
android:id="@+id/videoView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
<TextView
android:id="@+id/timer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|left"
android:textColor="@color/RED"
android:text="HI"></TextView>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/rLayoutCameraButtons"
android:layout_gravity="center|bottom">
<SeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10px"
android:id="@+id/seekbar"
android:max="100"
android:layout_alignParentTop="true"
/>
<RelativeLayout
android:id="@+id/rlayout_buttons"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/seekbar"
>
<Button
android:id="@+id/buttonPlay"
android:text="Play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
</Button>
<Button
android:layout_alignParentLeft="true"
android:id="@+id/buttonStop"
android:text="Stop"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
<Button
android:id="@+id/buttonPause"
android:text="Pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true" >
</Button>
</RelativeLayout>
</RelativeLayout>
我想隱藏自動隱藏我的相對佈局從上 最後觸摸withing 5秒還我想讓它出現在觸摸上該區域它存在的地方。沒有任何想法 PLZ幫助