我使用DrawerLayout左滑動菜單。當我使用背景圖像時,我的應用程序變得越來越慢。另一方面,當我使用背景顏色時,它會平滑。Android背景圖像緩慢的應用程序
我的代碼是
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:background="@drawable/app_bg"
android:layout_height="match_parent" >
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
</android.support.v4.widget.DrawerLayout>
這裏我的背景圖片是@drawable/app_bg
我不知道如何克服這一點,實現流暢的滑動移動。
我的背景圖片。
你想爲你的'FrameLayout'或你的滑動菜單的背景圖像嗎? –
我想FrameLayout.even的背景圖像。我爲FrameLayout設置背景圖像也很慢 – Manikandan
好吧,看看我的回答 –