我在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告诉我添加更多详细信息我不知道为什么我添加了问题和代码,我想知道如何修复,任何人都可以帮助我
感谢。
答案 0 :(得分:1)
更好的选择是使用Listview或甚至更好的RecyclerView代替ScrollView中的许多图像,因为它们可以回收未看到的项目,从而提高性能。 +毕加索(图像处理和缓存)。 https://github.com/square/picasso
以下是实施示例:https://futurestud.io/blog/picasso-adapter-use-for-listview-gridview-etc/
Picasso GitHub的代码示例: https://github.com/square/picasso/tree/master/picasso-sample/src/main/java/com/example/picasso
但是有很多很好的实施资源,只需google - android ListView或Recycler视图实现。
如果您仍想使用ScrollView,可以将RelativeLayout替换为Linearlayout,这可以提高性能,因为RelativeLayout被测量了2次。
答案 1 :(得分:0)
在ImageView中使用时加载图像
imageview.setImageBitmap(BitmapFactory.decodeResource(getContext().getResources(), R.drawable.image);
比
imageview.setImageResource(R.drawable.image);
根据我的经验,它最多可将Java和Graphics的内存消耗减少89%,这使应用程序运行更流畅,使用的内存更少,从而在应用程序运行时减少了垃圾回收。
下一步,对图像的文件大小设置一个约束,以确保可能的最高性能
来自:图像.jpg 1.2MB
收件人:image.jpg 512KB
如果文件已经在资源文件夹中,则可以在Mac中“在Finder中显示”或在Windows中“在资源管理器中打开”以显示文件,然后......
最后,也许您会发现本文对您的问题有所帮助