- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在创建一个聊天应用程序。应用程序运行良好。但是,当收到新消息(通过后台服务)时,我会更新 recyclerview,然后用户必须向下滚动才能看到新消息。
我想做的是,每当收到新消息时,我想更新回收器 View 并滚动到底部。这样用户无需滚动即可看到最后收到的消息。
聊天 Activity
public class Chatting extends AppCompatActivity {
private DrawerLayout drawerLayout;
private ApplicationEnvironmentURL applicationEnvironment;
private Toolbar toolbar;
private SelectVisitorService mService = new SelectVisitorService();
private boolean mBound = false;
public static Context baseContext;
private static String uniqueID;
public static ChattingAdapter mAdapter ;
public static List<ChattingItomObject> messageItems = new ArrayList<ChattingItomObject>();
private RecyclerView recyclerView;
public String ProfileId;
public String profileToken;
public String CompanyID;
public String DisplayName;
public String visitor_id;
public String visitor_name;
private EditText chat_message;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_chatting);
SharedPreferences prefs = getSharedPreferences("zupportdesk", MODE_PRIVATE);
ProfileId = prefs.getString("ProfileId", "Not defined");
profileToken = prefs.getString("profileToken", "Not defined");
CompanyID = prefs.getString("companyId", "Not defined");
DisplayName = prefs.getString("DisplayName", "Not defined");
chat_message = (EditText) findViewById(R.id.ET_chating_message);
baseContext = getBaseContext();
Intent intent = getIntent();
visitor_id = intent.getStringExtra("visitor_id");
visitor_name = intent.getStringExtra("visitor_name");
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
initNavigationDrawer();
ActionBar actionBar = getSupportActionBar();
actionBar.setTitle(visitor_name);
uniqueID = UUID.randomUUID().toString();
Log.d("GUIID", uniqueID);
// add some items to list to test
messageItems.add(new ChattingItomObject("VisitorID", visitor_name+" has joined the chat!", "", "Other", "UserName", "Other", uniqueID));
messageItems.add(new ChattingItomObject("VisitorID", "Hi, how can I help you today?", "", "Other", "UserName", "Other", uniqueID));
messageItems.add(new ChattingItomObject("VisitorID", DisplayName+" has joined the chat!", "", "Other", "UserName", "Other", uniqueID));
recyclerView = (RecyclerView) findViewById(R.id.recycler_chat);
mAdapter = new ChattingAdapter(this, messageItems);
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
recyclerView.setLayoutManager(layoutManager);
recyclerView.setItemAnimator(new DefaultItemAnimator());
recyclerView.setAdapter(mAdapter);
}
public static void updateChatting(String visitor_id, String message, String date_time, String operator_type, String visitor_name){
Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(Chatting.baseContext, notification);
r.play();
uniqueID = UUID.randomUUID().toString();
Log.d("GUIID", uniqueID);
messageItems.add(new ChattingItomObject(visitor_id, message, date_time, operator_type, visitor_name, "Message_Type", uniqueID));
Handler refresh = new Handler(Looper.getMainLooper());
refresh.post(new Runnable() {
public void run(){mAdapter.notifyDataSetChanged();}
});
}
聊天适配器
public class ChattingAdapter extends RecyclerView.Adapter<ChattingViewHolders>{
public List<ChattingItomObject> ChattingItem;
private Context context;
public ChattingAdapter(Context context, List<ChattingItomObject> items){
this.ChattingItem = items;
this.context = context;
}
@Override
public ChattingViewHolders onCreateViewHolder(ViewGroup parent, int viewType) {
Log.d("ChattingAdapter", String.valueOf(viewType));
if (viewType == 5001) {
// self message
View layoutView = LayoutInflater.from(parent.getContext()).inflate(R.layout.custom_chat_operator, null);
ChattingViewHolders rcv = new ChattingViewHolders(layoutView, context);
Log.d("ChattingAdapter", String.valueOf(viewType)+" - Operator");
return rcv;
} else if(viewType == 5002) {
// others message
View layoutView = LayoutInflater.from(parent.getContext()).inflate(R.layout.custom_chat_visitor, null);
ChattingViewHolders rcv = new ChattingViewHolders(layoutView, context);
Log.d("ChattingAdapter", String.valueOf(viewType)+" - visitor");
return rcv;
}else {
View layoutView = LayoutInflater.from(parent.getContext()).inflate(R.layout.custom_chat_other, null);
ChattingViewHolders rcv = new ChattingViewHolders(layoutView, context);
Log.d("ChattingAdapter", String.valueOf(viewType)+" - Other");
return rcv;
}
}
@Override
public void onBindViewHolder(ChattingViewHolders holder, int position) {
ChattingItomObject operator = ChattingItem.get(position);
String operator_type = operator.getOperatorType().toString();
Log.d("ChattingAdapter", "Message_type : "+operator_type);
if(operator_type.equals("Operator")) {
holder.operatorMessage.setText(ChattingItem.get(position).getMessage());
holder.operatorTime.setText(ChattingItem.get(position).getDateTime());
} else if(operator_type.equals("Visitor")){
holder.visitorMessage.setText(ChattingItem.get(position).getMessage());
holder.visitortime.setText(ChattingItem.get(position).getDateTime());
} else {
holder.otherMessage.setText(ChattingItem.get(position).getMessage());
}
}
@Override
public int getItemViewType(int position) {
String message = ChattingItem.get(position).getOperatorType();
if (message.equals("Operator")) {
return 5001;
} else if(message.equals("Visitor")){
return 5002;
}
return position;
}
@Override
public int getItemCount() { return ChattingItem.size(); }
}
View 持有者
public class ChattingViewHolders extends RecyclerView.ViewHolder implements View.OnClickListener{
public TextView operatorMessage;
public TextView operatorTime;
public TextView visitorMessage;
public TextView visitortime;
public TextView otherMessage;
private final Context context;
public ChattingViewHolders(View itemView, Context context) {
super(itemView);
this.context = context;
itemView.setOnClickListener(this);
operatorMessage = (TextView) itemView.findViewById(R.id.CCO_message);
operatorTime = (TextView) itemView.findViewById(R.id.CCo_time);
visitorMessage = (TextView) itemView.findViewById(R.id.CCV_message);
visitortime = (TextView) itemView.findViewById(R.id.CCV_time);
otherMessage = (TextView) itemView.findViewById(R.id.CC_other_message);
}
@Override
public void onClick(View view) {
}
}
Activity 聊天 XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start"
tools:context="zupportdesk.desk.zupport.chatsystem.Chatting">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.learn2crack.myapplication.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:id="@+id/user_details_app_bar"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_chat"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:scrollbars="none"
android:layout_marginTop="55dp"
android:layout_marginBottom="45dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/colorPrimaryDark"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColorHint="#CFD8DC"
android:textColor="#CFD8DC"
android:hint="Write a message"
android:id="@+id/ET_chating_message"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/IV_Chatting_send"
android:layout_toStartOf="@+id/IV_Chatting_send"
android:layout_marginLeft="10dp" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="5"
android:padding="4dp"
android:onClick="send_chat_message"
android:src="@android:drawable/ic_menu_send"
android:id="@+id/IV_Chatting_send"
android:layout_alignBottom="@+id/ET_chating_message"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
</RelativeLayout>
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:menu="@menu/menu_navigation"/>
</android.support.v4.widget.DrawerLayout>
有人可以帮助我在 updateChatting
方法中更新时将 Recyclerview 滚动到底部吗?
最佳答案
在 notifyDataSetChanged()
之后调用此函数:
recyclerView.scrollToPosition(mAdapter.getItemCount()-1);
此外,当您只向 recyclerView 添加新项目时,您可以调用:
,而不是调用notifyDataSetChanged()
mAdapter.notifyItemInserted(mAdapter.getItemCount()-1);
关于java - 更新时 Recyclerview 移至底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39443603/
如何在不使用垫片的情况下将 View 定位在底部。我知道我可以在 VStack 中放置一个间隔器和我的 View 来实现它,但我不想使用一个间隔器,因为我不希望我的 View 占据所有的垂直空间。使用
我想让文本 float 到现有标签的右下角。 我仍在使用旧学校表(编辑现有代码)。我的代码是这样的:
我有一个包含文本的表格单元格,但我怎样才能使文本齐平到单元格的顶部或底部(上面没有填充)?我试过垂直对齐,但它仍然没有到达顶部“边缘”。 我的代码 3.2325
我想用 javascript 打印一个特殊的页面 div。 function printDiv(divName) { var printContents = document
我需要检查元素是否距离页面底部 x 像素,以动态加载新内容。目前,即使栏位于底部,scrollTop 和高度也不匹配。 jquery 是允许的,虽然基本的 javascript 会更有帮助。 最佳答案
我正在用 pygame 重新制作 flappy bird,但主题是星球大战。我已经完成了游戏的美术和一般格式设置,但现在我需要调整细节。我一直在改变数字,试图让光剑完全到达屏幕的顶部和底部,因为目前有
http://pastehtml.com/view/bfzerlo1m.html 如何将红色框放在橙色 div 底部的 CENTER + 中? 红框的高度和宽度都是动态的,每个框都不同.. (它需要在
我正在研究和测试表格。到目前为止,我成功地使用 following fiddle 将选择框列表中的项目一项一项地向上和向下移动。 . 代码实例(向上移动): function moveUp() { $
在设计 IOS 应用程序时,我可以在页脚放置“后退”按钮功能吗? 最佳答案 我认为指南中没有任何内容禁止这样做,但是您的潜在用户习惯于将后退按钮放在左上角,因此除非您有充分的理由将后退按钮放在底部,并
你可以只在顶部/底部而不是所有(T、B、L、R)设置单元格填充或间距吗? 最佳答案 CSS? td { padding-top: 2px; padding-bottom: 2px; } 关于H
我正在为我的 React 应用程序使用无限滚动,并具有检测我何时恰好位于页面底部的功能: const [isFetching, setIsFetching] = useState(false); //
所以我有一个页面,其中有一个类似聊天的 div,里面充满了文本。它具有固定的高度和宽度(由 css 定义)。 我需要它在每次更新时滚动到底部,这是我到目前为止使用的 JS: $("#div1").an
我遇到了与此处描述的相同的问题:UIWebView doesn't scroll to the bottom of the webpage loaded/created (不幸的是没有人回答) 我有一
我有一个溢出设置为滚动的 div,它本质上是逐行从文件中流式传输数据。我想在流溢出时自动滚动到 div 的底部,但不使用“单击此处滚动到底部”按钮。 我已经知道 scrollTop = scrollH
我正在 Android studio 中构建一个应用程序,但遇到了一些问题。我在 main_activity.xml 中有一个 ImageView
我有一个扩展 Jpanel 的类,里面有一个动画。我有两个操作按钮可以停止和启动它,但是我需要这些按钮出现在 Jpanel 的底部。我已经尝试过: add(go,BOTTOM_ALIGNMENT);
嗨,我正在为ios设备(ipad)开发phonegap / cordova项目。该应用程序通过蓝牙键盘接收输入文本(因为我不想在屏幕上显示键盘)。到目前为止,应用程序可以按预期接收输入。但是关于外观,
我想在底部放置一个页脚。 出于某种原因,它会像这样出现。 在 index.html 中,我有:
我得到了一个带有内联编辑功能的 jqgrid,并且可以添加新行。 目前,新行以“编辑”模式显示在网格顶部。我想要的是将新行添加到网格底部,因为我的“添加新行”按钮位于自定义底部分页器中... 有人知道
在 Swift 3 中,我以编程方式创建了一个(底部)工具栏,其中包含自定义按钮,中间用灵活的垫片分隔自定义按钮,将一个(“上一个”)推到左边缘,另一个(“下一个”)到 View 的右边缘。但我无法显
我是一名优秀的程序员,十分优秀!