- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个TestActivity
:
public class TestActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test);
// Setup the Tabs ViewPager
final SectionsPagerAdapter pagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
ViewPager pager = (ViewPager) findViewById(R.id.pager);
// Set the number of tabs to keep in memory
pager.setOffscreenPageLimit(3);
pager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() {
int currentPosition = 0;
@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
}
@Override
public void onPageSelected(int newPosition) {
FragmentLifecycle fragmentToShow = (FragmentLifecycle)pagerAdapter.getItem(newPosition);
fragmentToShow.onResumeFragment();
FragmentLifecycle fragmentToHide = (FragmentLifecycle)pagerAdapter.getItem(currentPosition);
fragmentToHide.onPauseFragment();
currentPosition = newPosition;
}
@Override
public void onPageScrollStateChanged(int state) {
}
});
pager.setAdapter(pagerAdapter);
// Attach the ViewPager to the TabLayout
TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs);
tabLayout.setupWithViewPager(pager);
}
private class SectionsPagerAdapter extends FragmentPagerAdapter {
public SectionsPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int position) {
switch (position) {
case 0:
return new TestFragment();
case 1:
return new TestFragment();
case 2:
return new TestFragment();
case 3:
return new TestFragment();
}
return null;
}
@Override
public int getCount() {
return 4;
}
@Nullable
@Override
public CharSequence getPageTitle(int position) {
switch (position) {
case 0:
return "Test1";
case 1:
return "Test2";
case 2:
return "Test3";
case 3:
return "Test4";
}
return null;
}
}
}
通过 ViewPager
创建 4 个 TestFragment
:
public class TestFragment extends Fragment implements FragmentLifecycle {
private RecyclerView testRecycler;
private ArrayList<TestItem> items;
public TestFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View layout = inflater.inflate(R.layout.fragment_test, container, false);
/////////////////// CREATE TEST LIST //
items = new ArrayList<TestItem>();
items.add(new TestItem(0, "First1", "Last1"));
items.add(new TestItem(1, "First2", "Last2"));
items.add(new TestItem(2, "First3", "Last3"));
items.add(new TestItem(3, "First4", "Last4"));
items.add(new TestItem(4, "First5", "Last5"));
items.add(new TestItem(5, "First6", "Last6"));
items.add(new TestItem(6, "First7", "Last7"));
items.add(new TestItem(7, "First8", "Last8"));
items.add(new TestItem(8, "First9", "Last9"));
items.add(new TestItem(9, "First10", "Last10"));
items.add(new TestItem(10, "First11", "Last11"));
items.add(new TestItem(11, "First12", "Last12"));
items.add(new TestItem(12, "First13", "Last13"));
items.add(new TestItem(13, "First14", "Last14"));
items.add(new TestItem(14, "First15", "Last15"));
items.add(new TestItem(15, "First16", "Last16"));
items.add(new TestItem(16, "First17", "Last17"));
items.add(new TestItem(17, "First18", "Last18"));
items.add(new TestItem(18, "First19", "Last19"));
items.add(new TestItem(19, "First20", "Last20"));
items.add(new TestItem(20, "First21", "Last21"));
items.add(new TestItem(21, "First22", "Last22"));
items.add(new TestItem(22, "First23", "Last23"));
items.add(new TestItem(23, "First24", "Last24"));
items.add(new TestItem(24, "First25", "Last25"));
items.add(new TestItem(25, "First26", "Last26"));
items.add(new TestItem(26, "First27", "Last27"));
items.add(new TestItem(27, "First28", "Last28"));
items.add(new TestItem(28, "First29", "Last29"));
items.add(new TestItem(29, "First30", "Last30"));
/////////////////// SETUP THE TEST LIST //
testRecycler = (RecyclerView) layout.findViewById(R.id.test_recycler);
TestAdapter testAdapter = new TestAdapter(getContext(),
items);
testRecycler.setAdapter(testAdapter);
GridLayoutManager gridLayoutManager = new GridLayoutManager(getActivity(), 1);
testRecycler.setLayoutManager(gridLayoutManager);
return layout;
}
@Override
public void onPauseFragment() {
}
@Override
public void onResumeFragment() {
}
}
一切正常,自定义适配器 TestAdapter
,排列一切:
public class TestAdapter extends RecyclerView.Adapter<TestAdapter.ViewHolder> {
private Context context;
private Listener listener;
private ArrayList<TestItem> items;
interface Listener {
void onClick(int position, int id);
}
public TestAdapter(Context context, ArrayList<TestItem> items){
super();
this.context = context;
this.items = items;
}
public static class ViewHolder extends RecyclerView.ViewHolder {
private CardView cardView;
private TextView pupilFullNameTextView;
private CheckBox absentCheckbox;
private RadioButton failingButton;
private RadioButton strugglingButton;
private RadioButton meetingButton;
private RadioButton exceedingButton;
public ViewHolder(CardView view) {
super(view);
cardView = view;
pupilFullNameTextView = view.findViewById(R.id.fullName);
absentCheckbox = view.findViewById(R.id.absentCheckbox);
failingButton = view.findViewById(R.id.failing);
strugglingButton = view.findViewById(R.id.struggling);
meetingButton = view.findViewById(R.id.meeting);
exceedingButton = view.findViewById(R.id.exceeding);
}
}
public void setListener(Listener listener) {
this.listener = listener;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
CardView cv = (CardView) LayoutInflater.from(parent.getContext())
.inflate(R.layout.card_test, parent, false);
return new ViewHolder(cv);
}
@Override
public void onBindViewHolder(final ViewHolder holder, final int position) {
CardView cardView = holder.cardView;
// Set up the pupils name
holder.pupilFullNameTextView.setText(items.get(position).getFullName());
}
@Override
public int getItemCount() {
return items.size();
}
}
但是在绑定(bind)过程中,它实在是太慢了。加载所有 4 个 fragment 最多可能需要 5 秒。
我曾尝试将 setAdapter 方法移动到 AsyncTask
,这样我就可以加载 fragment 然后绑定(bind)数据,但是由于 UI 线程隔离,这无法工作。
但我忍不住想我做错了什么,因为它不应该花这么长时间!
我感觉问题可能出在 RecyclerView
中使用的 CardView
的 ViewModel 中:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:clickable="true"
android:focusable="true"
android:foreground="?android:attr/selectableItemBackground"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="2dp"
android:theme="@style/NormalTextAppearance">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image_view"
android:layout_width="60dp"
android:layout_height="60dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
app:srcCompat="@drawable/ic_default_pic"/>
<TextView
android:id="@+id/fullName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:text="TextView"
app:layout_constraintLeft_toRightOf="@+id/image_view"
card_view:layout_constraintBottom_toBottomOf="@+id/radioGroup"
card_view:layout_constraintTop_toTopOf="@+id/radioGroup"/>
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:orientation="horizontal"
android:padding="10dp"
app:layout_constraintBottom_toBottomOf="@+id/image_view"
app:layout_constraintTop_toTopOf="@+id/image_view"
card_view:layout_constraintEnd_toEndOf="parent">
<RadioButton
android:id="@+id/failing"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:buttonTint="@color/belowExpectations"
card_view:layout_constraintEnd_toEndOf="parent"
card_view:layout_constraintTop_toTopOf="parent"/>
<RadioButton
android:id="@+id/struggling"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:buttonTint="@color/meetingExpectations"
card_view:layout_constraintEnd_toStartOf="@+id/belowExpectations"
card_view:layout_constraintTop_toTopOf="parent"/>
<RadioButton
android:id="@+id/meeting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:buttonTint="@color/exceedingExpectations"
card_view:layout_constraintEnd_toStartOf="@+id/meetingExpectations"
card_view:layout_constraintTop_toTopOf="parent"/>
<RadioButton
android:id="@+id/exceeding"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:buttonTint="@color/excellingExpectations"
card_view:layout_constraintEnd_toStartOf="@+id/exceedingExpectations"
card_view:layout_constraintTop_toTopOf="parent"/>
</RadioGroup>
<CheckBox
android:id="@+id/absentCheckbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:text="Absent"
app:layout_constraintBottom_toBottomOf="@+id/radioGroup"
app:layout_constraintEnd_toStartOf="@+id/radioGroup"
app:layout_constraintTop_toTopOf="@+id/radioGroup"/>
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>
是不是根深蒂固了!?
有更好的方法吗?我正在尝试将数据加载到多个 CardView
条目中,然后通过按下四个 RadioButton
之一来记录数据:
为此苦苦挣扎...如果有人可以提出一种延迟数据绑定(bind)的方法并首先加载 fragment ,那将是一个舒适的最坏情况。 FragmentDialog
表示“正在加载”。如前所述,当我尝试这样做时,我惨遭失败。
最佳答案
findViewById
在性能方面非常昂贵。你应该做的是仅在创建 ViewHolder
时使用它(在 ViewHolders 构造函数中),在 ViewHolder
中保留对 View
的引用,然后在绑定(bind) ViewHolder
时访问它,例如:
holder.textView.setText("hello")
View 持有者:
public static class ViewHolder extends RecyclerView.ViewHolder {
public TextView textView;
public CheckBox checkBox;
public ViewHolder(CardView view) {
super(view);
textView = view.findViewByid(...)
...
}
}
关于android - RecyclerView onBindViewHolder 导致严重的性能问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51598957/
我正在开发我的应用程序,它要求电影海报的比例为 1:2。我找到了一种方法来做到这一点就是运行 movieAdapterViewHolder.posterview.requestLayo
我在 CardAdapter 中使用 onBindViewHolder。它包括 checkedTextView 的 onClick 方法。我试图获取这些文本并将其放入 Arraylist(shared
在适配器 submitList 到 DiffUtil 之后,调用 onBindViewHolder 并且出于某种原因它总是将列表滚动到顶部。 我尝试了 SO 中关于在 recyclerview 更新列
我收到错误:“FlickrRecyclerViewAdapter”类必须声明为抽象类或在“适配器”中实现方法抽象方法 onBindViewHolder(VH, int) 虽然这个错误应该是 self
我有一个 recyclerview 显示我的数据。在我的适配器类中,在 onBindViewHolder() 中,我为一个按钮创建了一个监听器,该按钮在单击时删除了一行。第一次工作得很好,但如果我尝试
如果图像不存在,我将尝试下载它们;如果已经下载,我将尝试保留并重新使用它们。 下载和展示作品时,不会重复使用它们。似乎 mValues 在不同的调用中不是相同的 mValues。 这是我的代码 pub
我已经将第三方库用于进度条,一切正常,但在 onBindViewHolder 方法中,当我编写 holder.donutprogress.setFinishedStrokeColor(colorsda
ViewPager 发布 1.0.0 版本 对于普通的 RecyclerView,holder.itemView给我当前绑定(bind)/渲染的 View 。 但是,FragmentStateAdap
我想在下一类 ChildViewHolder 的 onBindViewHolder 中访问 DayOfWeek,这样我就可以在 if 语句中使用它,如 ChildRecyclerAdapter 中所示
我在recycview中有很多按钮我只是想将它们添加到数组中,然后让它们添加一些工作。 首先我定义了数组名称“buttons”ToggleButton 按钮[] = new ToggleButton[
当我调用notifyDataSetChanged()时,它不会调用我的onBindViewHolder,我不知道它为什么这样做,我当前正在使用自定义布局,不知道这是否与它有关。 有人有什么想法吗?这是
我有一个TestActivity: public class TestActivity extends AppCompatActivity { @Override protected
我想填写诸如用户名、全名之类的内容,显示 follow_btn 的可见性。最大的问题是我不能在 onbindviewholder 中使用。它用红色下划线标出。你能帮我吗? 错误是:error: can
我正在尝试使用 RecyclerView 显示一个左侧有图像、右侧有标题的列表。 通过 for 循环,我在 ArrayList 中添加了标题和图像 String[] mtitles = {"Title
您好,当 recyclerview 第一次创建 OnbindViewHolder 时,我遇到了一个奇怪的问题,直到 recyclerview 中的最后一个项目被调用,然后当我滚动时OnbindView
onBindViewHolder 在数据绑定(bind)到 View 后的第一个位置和最后一个位置意外调用。这造成了问题,因为当我尝试向列表中添加项目时,最后一项的 ImageViews(相似和不同)
设置 我有一个带有自定义适配器和自定义 ViewHolder 的 RecyclerView。 我理解 onCreateViewHolder() 方法在 RecyclerView 用完 ViewHold
我知道这个问题已被多次询问与 ListViews 有关,但我一直无法真正理解解决方案。我知道 RecyclerViewAdapter 中 onBindViewHolder() 的位置参数类似于 lis
我已经将 RececlerView 与 ViewHolder 模式结合使用了一段时间。我正在实现自定义 Adapter。 我不是在我的代码中搜索特定的错误帮助。 我只是想知道,如果它是正常的,onBi
当我在我的 RecyclerView 上调用 notifyItemChanged() 时,相应的 Views(在本例中为按钮)没有按预期更新.我调用他们的原因是数据已经改变,这会导致他们的背景颜色改变
我是一名优秀的程序员,十分优秀!