我使用ExoPlayer
作为我的闹钟应用程序,我希望它使用闹钟音量而不是音乐音量(默认值)播放音乐。当它开始播放时,音量应从静音逐渐增加到当前的警报音量水平。
我可以完全获得当前和最大音量,但我找不到ExoPlayer
中的任何方法来使用它们。我发现this,但似乎对于ExoPlayer v2.0.4它不起作用。任何想法都将受到高度赞赏!
答案 0 :(得分:0)
在版本2.4+中,您可以使用
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary" />
<!-- FIX for intermittent invisible app bar layout
http://stackoverflow.com/questions/30895579/coordinatorlayout-toolbar-invisible-on-enter-until-full-height-->
<View
android:id="@+id/appbar_bottom"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/transparent"
android:visibility="invisible" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<TextView
android:id="@+id/textView_network_connection"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#88EF9A9A"
android:gravity="center"
android:padding="16dp"
android:text="@string/no_internet_connection"
android:textAppearance="?android:attr/textAppearanceMedium" />
</FrameLayout>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="12dp"
android:orientation="vertical">
<com.github.clans.fab.FloatingActionButton
android:id="@+id/fab_map"
style="@style/Fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_map_white_24dp"
android:tint="@color/off_white" />
<com.github.clans.fab.FloatingActionButton
android:id="@+id/fab_add_item"
style="@style/Fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add_white_24dp"
android:tint="@color/off_white" />
</LinearLayout>
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:menu="@menu/menu_drawer">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginEnd="2dp"
android:clickable="true"
android:orientation="vertical">
<TextView
android:id="@+id/textView_appVersion"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end" />
</LinearLayout>
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>