Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/218.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 当我滚动时图像滞后如何修复?_Java_Android_Xml - Fatal编程技术网

Java 当我滚动时图像滞后如何修复?

Java 当我滚动时图像滞后如何修复?,java,android,xml,Java,Android,Xml,我用android studio在tab1相对布局中创建了一个应用程序,我有8张图片,但当我运行我的应用程序并滚动时,它会延迟如何修复滚动时的延迟 这是密码 package com.example.drh3cker.ihebski_swip; import android.content.Intent; import android.graphics.Color; import android.net.Uri; import android.support.v4.app.FragmentAc

我用android studio在tab1相对布局中创建了一个应用程序,我有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);


Stackoverflow告诉我添加更多细节,我不知道为什么我添加了问题和代码,我想知道如何修复这些问题,有人能帮我吗


谢谢。

更好的选择是使用Listview或甚至更好的RecyclerView来代替ScrollView中的许多图像,因为它们可以回收看不到的项目,从而提高性能。+毕加索(图像处理和缓存)

以下是一个实施示例:

毕加索GitHub的代码示例:

但是有很多很好的实现资源,只有google-android ListView或Recycler视图实现


如果您仍然想使用ScrollView,可以用Linearlayout替换RelativeLayout,这样可以稍微提高性能,因为RelativeLayout测量了2次。

在ImageView中加载图像时,请使用

根据我的经验,它将Java和Graphics的内存消耗减少了89%,从而使应用程序运行更平稳,使用更少的内存,从而在应用程序运行时减少垃圾收集

接下来,对图像的文件大小设置一个约束,以确保尽可能高的性能

From:image.jpg | 1.2MB

收件人:image.jpg | 512KB

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

  • 在Mac预览中调整图像大小
  • 使用Microsoft Office Picture Manager在Windows中调整图像大小或图像文件大小(即使在现在仍然有用)
最后,也许你会发现这篇文章对你的问题有帮助


@SarthakMittal他说卷轴滞后了。图像在他开始滚动之前被加载。我认为问题不在于图像的内存大小。缓存库并不能解决这个问题。@hasan83对不起,我的错,我以为OP使用了ListView。他说滚动条滞后。图像在他开始滚动之前被加载。我不认为问题在于图像内存大小是这里唯一的问题。缓存库并不能单独解决这个问题。但是带有回收器视图的缓存库可能会解决这个问题。+一个用于覆盖所有可能的建议
<?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>
imageview.setImageBitmap(BitmapFactory.decodeResource(getContext().getResources(), R.drawable.image);
imageview.setImageResource(R.drawable.image);