- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个日历,所以我必须将 365 天显示在 7 行 52 行中。每一天都有不同的文字。生成一个时正在执行大量操作。所以滚动它们是如此缓慢和滞后。如何解决?
我的网格类父类:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
int nr = calendar.get(Calendar.DAY_OF_YEAR);
setContentView(R.layout.activity_main);
calendar.setTime(new Date());
int year = calendar.get(Calendar.YEAR);
boolean p = ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0);
calendar.set(Calendar.DAY_OF_YEAR, 1);
int before = calendar.get(Calendar.DAY_OF_WEEK)-2;
calendar.set(Calendar.DAY_OF_YEAR, 1);
calendar.add(Calendar.YEAR, 1);
calendar.add(Calendar.DAY_OF_YEAR, -1);
int after = calendar.get(Calendar.DAY_OF_WEEK)-2;
final GridView gridView = (GridView) findViewById(R.id.main_grid_calendar);
gridView.setAdapter(new DayAdapter(this, new String[(p?366:365)], before, after));
}
}
我的适配器类:
public class DayAdapter extends ArrayAdapter<String> {
private Context context;
private Calendar calendar = Calendar.getInstance();
private final int today = calendar.get(Calendar.DAY_OF_YEAR), before, after, count;
public DayAdapter(Context context, String[] values, int before, int after) {
super(context, R.layout.calendar_day, new String[before + values.length + after]);
this.context = context;
this.before = before;
this.after = after;
this.count = before + values.length + after;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View day = inflater.inflate(R.layout.calendar_day, parent, false);
final TextView date = (TextView) day.findViewById(R.id.dayitem_text_number);
final TextView holiday = (TextView) day.findViewById(R.id.dayitem_text_holiday);
final TextView click = (TextView) day.findViewById(R.id.dayitem_text_more);
SharedPreferences theme = Data.getPreferences(context, Data.Prefs.THEME);
Data.AppColorSet color = Data.getColors(Integer.parseInt(theme.getString(Data.appThemeSetings, "1")));
date.setTextColor(color.foreground);
holiday.setTextColor(color.foreground);
click.setTextColor(color.foreground);
day.setBackgroundColor(color.background);
calendar.set(Calendar.DAY_OF_YEAR, position+1-before);
if (position<before) {
day.setBackgroundColor(Color.GRAY);
} else if (position>=count-after) {
day.setBackgroundColor(Color.GRAY);
} else {
day.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(context, DayActivity.class);
intent.putExtra("id", position-3);
intent.putExtra("from", "calendar");
context.startActivity(intent);
}
});
}
String d = "" + calendar.get(Calendar.DAY_OF_MONTH);
String m = "" + (1 + calendar.get(Calendar.MONTH));
if (Integer.parseInt(d)<10) {
d = "0" + d;
}
if (Integer.parseInt(m)<10) {
m = "0" + m;
}
if (this.today==position-2) {
RelativeLayout layout = (RelativeLayout) day.findViewById(R.id.dayitem_relative_main);
layout.setBackgroundColor(color.dark?Color.rgb(55, 0, 0):Color.rgb(255, 200, 200));
}
final String today = d + "." + m;
date.setText(today);
String text = HolidayCalendar.getInstance(context).getTexts(today).get(0);
String[] arr = text.split(" ");
String result = "";
final int words = 4;
boolean full = false;
if (arr.length<=words) {
result = text;
full = true;
} else {
for (int i = 0; i<words; i++) {
result += " " + arr[i];
}
result += "...";
}
int number = HolidayCalendar.getInstance(context).getTexts(today).size() - (full?1:0);
if (number != 0) {
click.setText(number + " " + context.getResources().getString(R.string.see_more));
}
holiday.setText(result);
WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
Display display = wm.getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
day.setLayoutParams(new AbsListView.LayoutParams(width/7, width/4));
return day;
}
}
我的网格布局父级:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_relative_main"
tools:context="${relativePackage}.${activityClass}" >
<GridView
android:id="@+id/main_grid_calendar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/main_adview_bottom_dark"
android:background="#000000"
android:horizontalSpacing="1dp"
android:numColumns="7"
android:verticalSpacing="1dp" >
</GridView>
</RelativeLayout>
我的适配器布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dayitem_relative_main"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="#FFFFFF"
android:gravity="center" >
<TextView
android:id="@+id/dayitem_text_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="8sp" />
<TextView
android:id="@+id/dayitem_text_more"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="2dp"
android:gravity="center_horizontal"
android:textSize="8sp" />
<TextView
android:id="@+id/dayitem_text_holiday"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginBottom="15dp"
android:gravity="center|center"
android:textSize="10sp" />
</RelativeLayout>
编辑:ViewHolder 帮助了我!谢谢!
最佳答案
在显示列表和网格时轻松提高性能的最佳方法和更简单的方法是使用新的 RecyclerView
,在您的情况下,使用 GridLayoutManager
。这将在不修改大量代码的情况下提高性能。查看一些有关如何实现它的文档 here .
除此之外,您遇到的滞后是因为在您的 getView
方法中使用了 findViewById,这是一个重复多次的缓慢操作。避免一直搜索 View 的最佳做法是使用 ViewHolder
模式。查看此 link 中的第二部分.
关于Android大gridview滞后,移动缓慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32934676/
我有一个需要以编程方式作为列(而不是行)绑定(bind)到 gridview 的值列表。例如,如果我的 DAL 返回 10 个值,我需要将这 10 个值显示为 gridview 中的列作为标题文本,并
我有一个使用 out-gridview 显示结果的脚本.这是一个简单的例子: "hello world" | out-gridview 当我使用 Run with PowerShell 运行脚本时,它
我正在尝试使用工作正常的 Kartik 导出小部件,除了它没有在扩展“函数/网格”中获取数据。现在我当然明白它是如何工作的,它实际上并没有显示任何东西,只是呈现另一个 View 。但我不知道如何在导出
在 Android 教程中,GridView tutorial准确的说是有一行代码 GridView gridview = (GridView) findViewById(R.id.gridview)
我正在尝试为与我的 gridview 关联的每一列添加一个标题,这样当页面足够宽以显示多行项目时,列标题应该显示在每一列的顶部,如果页面缩小,以至于该列不再适合。 最终结果看起来像这样: 2 colu
在我使用 comboBox 而不是 default(textBox) 在 gridview 中使用这个搜索之前: [ 'attribute' => 'project_status',
我想在列中显示我的交易表中一个/所有帐户的总余额。余额列应显示添加上一行总余额的余额。 我的网格 View 代码是 'yii\grid\SerialColumn'],
我正在使用 gridview 列出我的所有数据。我的 table 看起来像这样。 $dataProvider, 'columns' => [ 'firstName',
我目前正在构建一个 Windows 8 XAML C# 应用程序。在一个页面中,我有一个用于水平滑动和滚动的滚动查看器。我有几个控件可以很好地与 scorllviewer 配合使用。但是当您滚动并且光
当调整 GridView 的大小时,它的元素被重新排列,该元素的动画似乎不起作用。 在这里你可以找到一个简单的例子:http://pastebin.com/BgST6sCv 如果单击示例中的其中一个方
如何动态更改 gridview 模板列顺序? 最佳答案 迭代 通通栏目 的网格 View 对象和 店铺 他们在 收藏 . List columns = new List(); foreach (Dat
我在 Yii2 中使用了 CRUD 生成器,它为我的 actionIndex 生成了以下代码 Controller ... public function actionIndex() { $s
在我的用户模型中我有一个函数: public function getRole() { if ($this->role == self::ROLE_USER) { return
我正在构建一个带有 Yii2 框架的 webapp,它将为用户(登录)提供下载管理员预先上传文件的能力。 我已经创建了操作 actionDownload在调用 sendFile() 的特定 Contr
我想在 GridView 中订购图像。我已经使用列表框并成功将图像添加到其中。它的显示如下 但我希望这些图像显示在 GridView 中。可能与否。 请帮助我......提前致谢 最佳答案 出于此类目
我试图通过在 QtQuick 2.0 (Qt 5) 中动态填充 ListModel 来填充 GridView。它可以工作,但应用程序启动速度非常慢: 应用程序窗口立即出现,但大约需要 2 秒才会出现浅
我在 Yii2 GridView 小部件中显示一些列,“执行人员名称”是其中之一,但它应该仅在主管登录时显示,而不是在执行人员登录时显示。 当我将可见值硬编码为零时,它不会显示如下: [ 'l
我想用 HTML 制作一个表格。所以我从数据库中获取了一些数据。 每个项目都是一个用户。用户有用户名、名字、姓氏和电子邮件。我想制作一个表格来列出这些用户。 每个用户都必须换行。我已经在互联网上搜索过
我想在 pjax 处于事件状态的排序 gridview 之后运行脚本。重新加载 gridview 后我找不到任何事件处理程序。 pjax调用和gridview刷新后有没有正确的事件处理方法? 最佳答案
在 WinRT 上,我有一个 GridView 。我想在到达 gridview 的末尾时执行一个方法。 但是,没有像 GridView 那样的事件方法。 我尝试检测对 gridview 的操纵,但似乎
我是一名优秀的程序员,十分优秀!