- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚接触堆栈溢出和 android 编程,所以请原谅我犯的任何错误。
在我的主要 Activity 中,我有一个抽屉导航,其中使用了 onNavigationDrawerItemSelected 函数,并显示了其中的代码:
public void onNavigationDrawerItemSelected(int position) {
// update the main content by replacing fragments
Fragment myFragment = null;
switch(position)
{
case 0:
myFragment = new HomeFragment();
break;
case 1:
//myFragment = new TestFragment();
break;
case 2:
// TODO: Add more
break;
}
if(myFragment!=null)
{
getFragmentManager().beginTransaction()
.replace(R.id.nav_contentframe, myFragment)
.commit();
}
}
应该注意的是,当我尝试选择调用 HomeFragment 的按钮时,应用程序反而会添加到卡片上,而不是替换它。以下代码为HomeFragment.java
package tk.easthigh.witsmobile;
import android.app.FragmentManager;
import android.content.Context;
import android.os.Bundle;
import android.app.Fragment;
import android.support.v7.widget.DefaultItemAnimator;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
public class HomeFragment extends Fragment {
SimpleRecyclerAdapter adapter;
public HomeFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
final View view = inflater.inflate(R.layout.fragment_home, container, false);
RecyclerView recyclerView = (RecyclerView) view.findViewById(R.id.home_recyclerview);
final Context context = getActivity().getApplicationContext();
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(context));
recyclerView.setItemAnimator(new DefaultItemAnimator());
if (adapter == null) {
adapter = new SimpleRecyclerAdapter(context);
recyclerView.setAdapter(adapter);
}
adapter.SetOnItemClickListener(new SimpleRecyclerAdapter.OnItemClickListener() {
@Override
public void onItemClick(View view, int position) {
switch (position) {
case 0:
Toast.makeText(getActivity().getBaseContext(), "Hi!", Toast.LENGTH_SHORT).show();
break;
case 1:
break;
case 2:
break;
default:
Toast.makeText(getActivity().getBaseContext(), "Undefined Click!", Toast.LENGTH_SHORT).show();
}
}
});
// Inflate the layout for this fragment
return view;
}
}
对 SimpleAdapter 的引用是位于此 github 的代码.这是 activity_main.xml,其中包含 id 为“nav_contentframe”的 FrameLayout:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/nav_drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/toolbar" />
<FrameLayout
android:id="@+id/nav_contentframe"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize"
android:background="@android:color/background_light">
</FrameLayout>
</RelativeLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer" />
这里是 fragment_home.xml:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" tools:context="tk.easthigh.witsmobile.HomeFragment">
<android.support.v7.widget.RecyclerView
android:id="@+id/home_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false" />
我能够确定从 FragmentManager 调用 replace 方法似乎会添加 HomeFragment 的 RecyclerView 中所有卡片的副本。
例如,RecyclerView 有 4 张卡片。然而,按下抽屉导航上应该替换内容的按钮,反而复制了卡片,最终产品留下了 8 张卡片。再次按下它会产生 12 张牌,依此类推。当然,这不是预期的情况,但在谷歌了几个小时并尝试调试之后,我无法弄清楚出了什么问题。
最佳答案
正如我在评论中所述,SimpleRecyclerAdapter
引用了两个静态列表:
public static List<String> homeActivitiesList = new ArrayList<String>();
public static List<String> homeActivitiesSubList = new ArrayList<String>();
这些将用于 每个引用 SimpleRecyclerAdapter
。最重要的是,每次创建 SimpleRecyclerAdapter
对象时都会填充它们,这显然发生在这里。
我不知道开发人员为什么选择这样做。如果是出于效率原因,那么在 SimpleRecyclerAdapter
的构造函数中,您需要进行检查以防止在创建列表后填充它们。像这样:
public static List<String> homeActivitiesList = null;
public static List<String> homeActivitiesSubList = null;
Context context;
OnItemClickListener clickListener;
public SimpleRecyclerAdapter(Context context) {
isHomeList = true;
this.context = context;
setHomeActivitiesList(context);
}
public void setHomeActivitiesList(Context context) {
if (homeActivitiesList == null) {
homeActivitiesList = new ArrayList<String>();
homeActivitiesSubList = new ArrayList<String();
String[] listArray = context.getResources().getStringArray(R.array.home_activities);
String[] subTitleArray = context.getResources().getStringArray(R.array.home_activities_subtitle);
for (int i = 0; i < listArray.length; ++i) {
homeActivitiesList.add(listArray[i]);
homeActivitiesSubList.add(subTitleArray[i]);
}
}
}
另一件事是确保您不会在每次替换时都创建新的 fragment 。因此,在您的主 Activity 中,您可以保留对 HomeFragment 的引用,并使用它而不是像这样创建一个新的:
HomeFragment mHomeFragment = null
public void onNavigationDrawerItemSelected(int position) {
// update the main content by replacing fragments
Fragment myFragment = null;
switch(position)
{
case 0:
if (mHomeFragment == null) {
mHomeFragment = new HomeFragment();
}
myFragment = mHomeFragment;
break;
case 1:
//myFragment = new TestFragment();
break;
case 2:
// TODO: Add more
break;
}
if(myFragment!=null)
{
getFragmentManager().beginTransaction()
.replace(R.id.nav_contentframe, myFragment)
.commit();
}
}
这样,只要MainActivity在内存中,就可以保证最后一个HomeFragment的所有内容都在内存中。
关于android - FragmentManager replace() 似乎在 RecyclerView 中复制卡片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31081180/
让我们开始吧,3 个类(Card、Start、Deckofcards) 1° 卡: public class Card { private String type; private i
我要创建一个二十一点游戏,我正在尝试弄清楚如何发牌并让它显示值和名称。我选择两个属性的原因纯粹是基于逻辑,当涉及到将 A 视为 1 或 11 时。还没有达到这一点,只是想如果有人想知道的话我会包括在内
我正在尝试使用 twitter 元标记(以及 Facebook 等其他网站的 Open Graph)创建 Twitter 卡片。当我看到来自其他人(例如 NPR 新闻)的推特提要时,卡片会默认展开。
我正在开发一个玩基本扑克游戏的程序,但这并不重要。我有一组 52 张牌,包含花色和等级。我想打印 4 行 13 行的值(花色和等级)。这可能是一个简单的问题,但我整天都在努力解决这个问题。因此,我非常
我开发了一个包含三列(两列相等,一列较小)的网格。我的问题是我无法在卡片上设置高度,我在 px 中使用了它们并且它起作用了,但这不是最好的方法。我希望这三列具有相同的高度(页面的 100%)并且一些卡
我在 4 个不同的列中开发了 4 个 Bootstrap 卡。在每张卡片中,我创建了一张包含某种类型信息的新卡片。 我的问题是,当我缩小屏幕尺寸(响应测试)时,文本会从卡片中溢出。我的问题是什么,我该
我怎样才能达到 固定高度 具有垂直可滚动 的 bootstrap 4 卡卡片文字部分? Card title This portion and
在我的程序中,我有一个大 Canvas ,我在其中提取多个选定区域并将这些区域绘制到单独的新小 Canvas 上。 我想使用此 API 将新创建的 Canvas 作为附件发布到 trello POST
我想在卡片 View 中显示联系信息,如果需要,应该调整卡片 View 的大小以包含所有信息。 这是布局部分: 但是 an
这是我的card_view。我已经提到了 card_view:cardElevation。但是仍然没有显示阴影。 我搜索了很多链接。他们在任何地方都提到要使用 card_view:cardElevat
我正在使用此处的框架 - cardsui 如何在卡片顶部添加分享按钮。我已经使用点击方法在 xml 中实现了它,但是当我按下它时应用程序崩溃并说该方法不存在(是的,我将该方法添加到主 java 文件中
我正在将 cardview 与 recycler view 一起使用。但早些时候我使用相同的代码来做事没有任何问题。但现在我正在使用 fragment 。现在我得到卡片 View 之间的距离更大。我的
我的卡片 View 设置如下: android:layout_marginTop="2dp" android:layout_marginLeft="6dp" android:layout_margin
我正在制作一个二十一点游戏,并创建了一个数组来充当用户发牌的手牌。我希望能够对其进行排序,以便手按数字顺序排序,这样可以更简单地确定用户的手的类型。这是我的卡片结构: struct ACard{
我希望在一个运行在 Wordpress 上的网站上实现 Twitter Cards(关于 Twitter Cards 的文档在这里:https://dev.twitter.com/docs/cards
我需要帮助解决这个难题。在 bootstrap 4.1 中使用卡片列和卡片时,当我不想这样做时,行会中断。我将列数设置为 4,当有 4 张卡片时,它看起来很完美。当添加第五张牌时,它会将行分成顶部的
我有一个 android ListView ,它显示类似卡片的 View ,正如您在这张图片中看到的,我的卡片之间有一条灰色细线: 我怎样才能摆脱灰线? 我实现这个卡片 View 的xml是这样的:
我正在尝试添加带有回收站 View 的卡片 View 。但它没有显示任何内容,只是一个空白 View 。 我在这里看到了这方面的问题,它有为回收站 View 和卡片 View 添加依赖项的答案。这出现
我在 android 中通过回收站 View 实现卡片 View ,但我的卡片 View 没有显示。我正在使用自定义适配器将数据填充到卡片 View 。我已经尝试了所有方法,但没有显示卡片 View
在我的应用程序中,我有一个卡片 View ,其中包含一个 TextView 和一个按钮,该按钮最初是隐藏的,当单击卡片 View 时,会显示该按钮。我不知道如何在显示按钮时将其设置为动画。任何人都可以
我是一名优秀的程序员,十分优秀!