我試圖在我的應用程序的GUI上設置一個簡單的靜音按鈕。選中時: 1.靜音媒體音量 一個再次選擇時, 2.取消靜音媒體音量試圖在Android應用程序上設置靜音按鈕(java)
我是新來的Java。我不知道要導入哪個包或哪個語句最適合此。 這是我到目前爲止有:
//Mute Button
btnMute = (Button)findViewById(R.id.wmute);
按鈕XML:通過this documentation閱讀
<Button
android:id="@+id/wmute"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Mute" />
做你的應用程序有AudioManager類的一個對象? – 2012-12-19 16:56:25
你對音頻的實際靜音有什麼想法?上面的代碼*應該*將你的佈局按鈕轉換爲你的java代碼進行操作。 –
是的,我已經進口音頻管理器 – Mustafa