我的应用需要使用近百个片段。直到现在我已经设计了15个片段布局并编写了相应片段的java代码。我在每个片段中使用一个按钮(称为下一个按钮),我在此按钮的侦听事件中编写了片段转换代码。我面临的问题是,当我运行我的应用程序时,它工作正常,直到第8个片段转换,然后它逐渐减慢UI响应。当我到达第14个片段时,我必须等待将近2分钟才能从第13个片段转移到第14个片段。布局xml是:
Futures
下一个按钮内的代码是:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:background="@android:color/holo_blue_dark"
android:id="@+id/mc">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:layout_marginStart="20dp"
android:layout_marginTop="15dp"
android:text="Marks:"
android:textSize="20sp" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignStart="@+id/textView5"
android:layout_alignLeft="@+id/textView5"
android:layout_alignTop="@+id/textView"
android:text="participatent question:"
android:textSize="20sp" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignStart="@+id/textView"
android:layout_alignLeft="@+id/textView"
android:layout_marginTop="55dp"
android:text="total question:"
android:textSize="20sp" />
<TextView
android:id="@+id/textView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/textView4"
android:layout_marginEnd="157dp"
android:layout_marginRight="157dp"
android:text="current question:"
android:textSize="20sp" />
<TextView
android:id="@+id/textView6"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginTop="108dp"
android:background="@drawable/rounded_color"
android:paddingLeft="10dp"
android:text="what is the minimum age to get the driving license ?"
android:textSize="25sp" />
<RadioGroup
android:id="@+id/radiogroup"
android:layout_width="110dp"
android:layout_height="160dp"
android:layout_centerVertical="true"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:layout_toLeftOf="@+id/textView3"
android:layout_toStartOf="@+id/textView3">
<RadioButton
android:id="@+id/radioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_marginRight="25dp"
android:layout_weight="1"
android:paddingRight="5dp"
android:background="@drawable/rounded_color"
android:text="16 years" />
<RadioButton
android:id="@+id/radioButton4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@drawable/rounded_color"
android:text="18 years"
android:paddingRight="5dp"/>
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@drawable/rounded_color"
android:text="21 years"
android:paddingRight="5dp"/>
<RadioButton
android:id="@+id/radioButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@drawable/rounded_color"
android:text="19 years"
android:paddingRight="5dp"/>
</RadioGroup>
<Button
android:id="@+id/btnNext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_marginBottom="142dp"
android:text="next"
android:textSize="18sp" />
<TextView
android:id="@+id/txtParticipatent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/textView"
android:layout_marginEnd="86dp"
android:layout_marginRight="86dp"
android:text="0"
android:textSize="20sp" />
<TextView
android:id="@+id/textView8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/textView4"
android:layout_toEndOf="@+id/textView4"
android:layout_toRightOf="@+id/textView4"
android:text="111"
android:textSize="20sp" />
<TextView
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignStart="@+id/btnNext"
android:layout_alignLeft="@+id/btnNext"
android:layout_alignTop="@+id/textView4"
android:textSize="20sp"
tools:text="1" />
<TextView
android:id="@+id/txtMarks"
android:layout_width="wrap_content"
android:layout_height="29dp"
android:layout_alignTop="@+id/textView"
android:layout_toEndOf="@+id/textView4"
android:layout_toRightOf="@+id/textView4"
android:textSize="20sp"
tools:text="0" />
</RelativeLayout>
我需要在100个片段内使用相同的布局,但文本会有所不同。并且下一个按钮内的代码也是相同的,但是片段转换将是不同的,即从片段A到片段B,片段B到片段C等等。那么,我该如何解决这个问题呢?我如何优化我的应用程序,以便我的应用程序正常工作。
答案 0 :(得分:0)
可能的解决方案:
1
Fragment fragment = getSupportFragmentManager().findFragmentByTag(TAG_FRAGMENT);
if(fragment != null)
getSupportFragmentManager().beginTransaction().remove(fragment).commit();
2.另外检查你的内存使用情况,以确保你的用户界面没有记忆。
听起来像是一个记忆问题。
您还可以在adb:adb shell dumpsys meminfo system
3.使用android profiler来监视内存
4.定期强制垃圾收集可以解决问题:System.gc()