java - 滚动时图像滞后如何解决?

标签 java android xml

我在 tab1 相对布局中使用 android studio 创建了一个应用程序,我有 8 个图像,但是当我运行我的应用程序并滚动时,它会滞后如何修复滚动时的滞后。

这是代码

package com.example.drh3cker.ihebski_swip;


import android.content.Intent;
import android.graphics.Color;
import android.net.Uri;
import android.support.v4.app.FragmentActivity;
import android.support.v4.view.PagerTabStrip;
import android.support.v4.view.ViewPager;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;

//this project developped by iheb ben salem@IBSSoft
public class MainActivity extends FragmentActivity {

ViewPager pager;
PagerTabStrip tab_strp;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main_tab);
    ma_pager_adapter mapager=new ma_pager_adapter(getSupportFragmentManager());
    pager=(ViewPager)findViewById(R.id.pager);

    pager.setAdapter(mapager);
    tab_strp=(PagerTabStrip)findViewById(R.id.tab_strip);
    tab_strp.setTextColor(Color.WHITE);
 //   tab_strp.setTextSize(14,14);
   // tab_strp.setTabIndicatorColor(Color.WHITE);
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.share) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}


public void browser1(View view) {
    Intent browserIntent=new Intent(Intent.ACTION_VIEW, Uri.parse("http://example.com"));
    startActivity(browserIntent);

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:weightSum="1">

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true">


<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:id="@+id/imageView"
        android:src="@drawable/fra"
        android:background="#f44437"
        android:contentDescription="@string/App_Title_Image" />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="150dp"
        android:id="@+id/imageView2"
        android:src="@drawable/saavnmusicapp"
        android:paddingTop="8sp"
        android:onClick="browser1"
        android:contentDescription="@string/saavn_music_app"
        android:scaleType="fitCenter"
        android:layout_below="@+id/imageView"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        style="?android:borderlessButtonStyle"/>

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="150dp"
        android:id="@+id/imageView3"
        android:src="@drawable/earntalktime"
        android:layout_below="@+id/imageView2"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:contentDescription="@string/earn_talktime_image"
        android:onClick="browser2"
        style="?android:borderlessButtonStyle"/>

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="150dp"
        android:id="@+id/imageView4"
        android:src="@drawable/flipkart"
        android:onClick="browser3"
        android:contentDescription="@string/flipkart_app_image"
        android:layout_below="@+id/imageView3"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        style="?android:borderlessButtonStyle"/>

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:id="@+id/imageView5"
        android:layout_below="@+id/imageView4"
        android:layout_centerHorizontal="true"
        android:src="@drawable/paytmapp"
        android:contentDescription="@string/paytm_app_image"
        android:onClick="browser4"
        style="?android:borderlessButtonStyle"/>

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:id="@+id/imageView6"
        android:layout_below="@+id/imageView5"
        android:layout_centerHorizontal="true"
        android:src="@drawable/uc"
        android:onClick="browser5"
        style="?android:borderlessButtonStyle"
        android:contentDescription="@string/uc_browser_image" />

    <ImageView
         android:layout_width="match_parent"
         android:layout_height="150dp"
         android:id="@+id/imageView7"
         android:layout_below="@+id/imageView6"
         android:layout_centerHorizontal="true"
         android:src="@drawable/dailyhunt"
         android:onClick="browser6"
         style="?android:borderlessButtonStyle"
         android:contentDescription="@string/uc_browser_image" />

    <ImageView
         android:layout_width="match_parent"
         android:layout_height="150dp"
         android:id="@+id/imageView8"
         android:layout_below="@+id/imageView7"
         android:layout_centerHorizontal="true"
         android:src="@drawable/freepaisa"
         android:onClick="browser7"
         style="?android:borderlessButtonStyle"
         android:contentDescription="@string/uc_browser_image" />

    <ImageView
         android:layout_width="match_parent"
         android:layout_height="150dp"
         android:id="@+id/imageView9"
         android:layout_below="@+id/imageView8"
         android:layout_centerHorizontal="true"
         android:src="@drawable/mobikwik"
         android:onClick="browser8"
         style="?android:borderlessButtonStyle"
         android:contentDescription="@string/uc_browser_image" />




</RelativeLayout>
</ScrollView>

Stackoverflow 告诉我添加更多详细信息,我不知道为什么我添加了问题和代码,我想知道如何解决这个问题,任何人都可以帮助我

谢谢。

最佳答案

在 ImageView 中加载图像时使用

imageview.setImageBitmap(BitmapFactory.decodeResource(getContext().getResources(), R.drawable.image);

imageview.setImageResource(R.drawable.image);

根据我的经验,它减少了 Java 和 Graphics 的内存消耗高达 89%,这使得应用程序运行更流畅,使用更少的内存,从而在应用程序运行时减少垃圾收集。

接下来,对图像的文件大小设置限制,以确保尽可能获得最高性能

From:      image.jpg    |    1.2MB

To:          image.jpg    |    512KB

当文件已位于您的资源文件夹中时,您可以在 Mac 中“在 Finder 中显示”或在 Windows 中“在资源管理器中打开”来显示您的文件,然后您可以...

  • 在 Mac 版预览中调整图像大小
  • 在 Windows 中使用 Microsoft Office 图片管理器调整图像大小或调整图像的文件大小(即使在今天仍然有帮助)

最后,也许您会发现这篇文章对您的问题有所帮助

https://medium.freecodecamp.org/how-we-reduced-memory-footprint-by-50-in-our-android-app-49efa5c93ad8

关于java - 滚动时图像滞后如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33124850/

相关文章:

java - ValidationException 异常说明 : uses a non-entity as target entity in the relationship attribute

java - 从 javax.swing.text 对 AbstractDocument.UndoRedoDocumentEvent 尝试 instanceof 时出现 IllegalAccessError

java - Axis 2 会自动创建(并保存)wsdl 文件吗?

java - Java中使用递归查找数组中最大的元素

android - 从 Facebook 连接的 Android 应用程序注销

java - Android:创建自定义容器 View

python - 如何为具有特定属性值的xml元素选择数据?

android - 如何将 ".apk"下载为 ".apk"? (不是 ".zip")

java - jaxb 使用零参数构造函数进行解码

java - Android 开发者上的 CustomButton