gpt4 book ai didi

android - 与 4.0.3 相比,应用程序 UI 操作(设置 alpha、设置边距等)在 4.4.4 上非常慢

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:02:31 24 4
gpt4 key购买 nike

我有一个可更改 ImageView 的 alpha 的搜索栏。这在装有 android 4.0.3 的旧 HTC Desire 200 上运行非常流畅。我试图在具有 android 4.4.4 的摩托罗拉 Moto G 2014 上运行相同的代码。摩托罗拉手机的功能是 HTC 的 3 倍,但当我使用搜索栏时,应用程序卡顿了。

不是手机的问题,在安兔兔跑分中,摩托罗拉手机跑分18000分,而HTC跑分6000分。

这是搜索栏更改事件:

    int counter = 0;
private void mainSeekBarProgreessChanges(SeekBar seekBar, int progress) {
float a = progress / 100f;
imgRight.setAlpha(a);

++counter;
txtMsg.setText(Integer.toString(counter));
}

只有较大的图片(1280x720 或更大)才会出现卡顿。对于小图片则不会卡顿。

当我使用搜索栏设置 View 的边距时,也会出现卡顿现象。

这是应用程序的 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testprog1"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

这是 Activity :

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.testprog1.MainActivity" >

<FrameLayout
android:id="@+id/layout_top"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/layout_footer"
android:layout_alignParentLeft="false"
android:layout_alignParentTop="true" >

<ImageView
android:id="@+id/img_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/start_image_left" />

<ImageView
android:id="@+id/img_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/start_image_right" />
</FrameLayout>

<LinearLayout
android:id="@+id/layout_footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="false"
android:orientation="vertical" >

<SeekBar
android:id="@+id/seekbar_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100"
android:progress="100" />

<LinearLayout
android:id="@+id/layout_line1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<Button
android:id="@+id/btn_main"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />

<TextView
android:id="@+id/txt_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textAppearance="?android:attr/textAppearanceMedium" />

</LinearLayout>
</LinearLayout>

</RelativeLayout>

更新:如果我在 list 中禁用硬件加速,那么性能会有所提高,但仍然存在明显的卡顿现象。

更新 2:这是我使用搜索栏设置 ImageViews 的边距时的屏幕截图: When setting margins

这是我使用 setImageAlpha 设置 ImageViews 的 alpha 的屏幕截图: enter image description here

这是在设置边距的搜索栏更改事件中调用的代码:

FrameLayout.LayoutParams layoutParamLeft = (LayoutParams) layoutLeft.getLayoutParams();
layoutParamLeft.setMargins(layoutParamLeft.leftMargin, layoutParamLeft.topMargin, seekBar.getMax() - progress, layoutParamLeft.bottomMargin);
layoutLeft.setLayoutParams(layoutParamLeft);
layoutLeft.invalidate();

FrameLayout.LayoutParams layoutParamRight = (LayoutParams) layoutRight.getLayoutParams();
layoutParamRight.setMargins(progress, layoutParamRight.topMargin, layoutParamRight.rightMargin, layoutParamRight.bottomMargin);
layoutRight.setLayoutParams(layoutParamRight);
layoutRight.invalidate();

最佳答案

众所周知,setAlpha() 存在性能问题。参见示例:

因为它是一个 ImageView 小部件,您是否尝试过使用 setImageAlpha() (API 级别 16+)代替?

在 Nexus 5(使用 Android 5.0)中测试您的示例,我得到:

  • setAlpha() -- ~45ms
  • setImageAlpha() -- ~5ms

但无论哪种方式都没有明显的卡顿(并且移动 SeekBar 是完全平滑的)。

关于android - 与 4.0.3 相比,应用程序 UI 操作(设置 alpha、设置边距等)在 4.4.4 上非常慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26716725/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com