android微信评论
Ⅰ 安卓手机微信动态上面的评论怎么删
1、首先详细说说怎么删除在微信朋友圈自己评论的信息?
打开微信,进入朋友圈,找到说说下面的评论
2、找到我们评论别人的信息,然后短按这个信息,最好点击信息的右边
3、接下来会出现一个“删除”提示,点击删除后,即可删除成功
4、而对于别人在朋友圈给我们的评论,目前我们点击后只能出现复制,而不能删除。但是别人评论的信息,只是我们的微信好友在朋友圈是看不到的,除非我们的好友和写评论的好友也是好友,才可以看见
5、所以对于这样的情况,我们无法删除其它好友的评论,但是又要达到杜绝这个好友乱评论,目前我们能采取的办法就是拉这个好友去黑名单或者设置朋友圈权限啦
Ⅱ 如何实现Android端微信朋友圈评论的效果
可能是IOS版本的微信更新了,然后主人回复某人的话语就被自动隐藏了。
Ⅲ 安卓手机什么时候也能在微信朋友圈带图评论呢
大家好,我是烽子气猪猴
关于你这个问题
第一,可能你没注意到微信版本的更新,这是新版本微信的新增功能
更新微信后你就能在朋友圈评论发动图了
希望我的回答能帮到你[耶]
Ⅳ 安卓手机微信评论不能复制怎么办
您说的评论的复制和粘贴,是否是指朋友圈里的评论。微信的其它部位没见到评论区。朋友圈里的评论的复制:长按欲复制的评论,出现了复制并点按,再粘贴到适当位置:
微信收藏→右上角按加号→笔记收藏→粘贴。没有从哪里来的标志,最好贴上标签。
还可以粘贴便签或记事本,备用。
供您参考。
Ⅳ 安卓微信7.0.4发朋友圈文字折叠 评论也折叠是什么原因。
自己测试看看。
Ⅵ 安卓微信更新7.0.10缺不能朋友圈评论发表情
这个可能是你的手机问题,您可以重启一下,就可以在评论圈在朋友圈评论发表情了
Ⅶ android 微信评论功能怎么写的
点击评论图片弹出一个dialog 然后点击评论显示底部的评论输入框并且使得输入框获得焦点
Ⅷ android微信的评论弹出框用什么控件做的
实现对一个主题评论并显示评论列表,首先想到的是需要使用ListView控件,
下面是layout下的xml布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/list_selector"
android:orientation="horizontal"
android:padding="5dip" >
<LinearLayout
android:id="@+id/thumbnail"
android:layout_width="120dip"
android:layout_height="120dip"
android:layout_alignParentLeft="true"
android:layout_marginRight="5dip"
android:background="@drawable/image_bg"
android:padding="1dip" >
<ImageView
android:id="@+id/group_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerInside"
android:src="@drawable/right" />
</LinearLayout>
<TextView
android:id="@+id/group_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/thumbnail"
android:layout_toRightOf="@+id/thumbnail"
android:text="测试朋友圈评论功能"
android:textColor="#040404"
android:textSize="15sp"
android:textStyle="bold"
android:typeface="sans" />
<TextView
android:id="@+id/group_content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/thumbnail"
android:text="狗狗见到蟒,冲过去照头上就舔"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#343434"
android:textSize="12sp" />
<ImageView
android:id="@+id/group_discuss_popup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/group_content"
android:layout_below="@+id/group_content"
android:background="@drawable/coment_pressed" />
<TextView
android:id="@+id/group_createtime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/TextView09"
android:layout_toLeftOf="@+id/group_discuss_popup"
android:gravity="right"
android:text="2014-08-24 15:45"
android:textColor="#10bcc9"
android:textSize="12sp"
android:textStyle="bold" />
<RelativeLayout
android:id="@+id/rl_bottom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<Button
android:id="@+id/group_discuss_submit"
android:layout_width="60dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:background="@drawable/chat_send_button_bg"
android:onClick="discussSubmit"
android:text="发送"
android:textSize="20sp" />
<EditText
android:id="@+id/group_discuss"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@id/group_discuss_submit"
android:hint="评论"
android:singleLine="true"
android:textSize="18sp" >
<requestFocus />
</EditText>
</RelativeLayout>
<ListView
android:id="@+id/group_discuss_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/group_discuss_popup"
android:layout_marginTop="14dp"
android:divider="#b5b5b5"
android:dividerHeight="1dp"
android:listSelector="@drawable/list_selector" />
<TextView
android:id="@+id/TextView09"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/thumbnail"
android:layout_marginBottom="40dp"
android:layout_toRightOf="@+id/thumbnail"
android:text="时间:"
android:textColor="#040404"
android:textSize="12sp"
android:textStyle="bold"
android:typeface="sans" />
</RelativeLayout>
Ⅸ android仿微信朋友圈评论用listview实现吗
可以用listview实现啊。有什么问题?
listview的好处是可重复利用view,如果item多了,必须用list,否则会有太多的view了,导致内存耗费太多。
Ⅹ 我的微信被Android登录了,是不是被盗了
微信悄悄隐藏的查询入口,快来查查你的微信有没被盗用!
最近,新闻频频曝光“倒卖微信号”的黑色产业链,让人不禁心慌。我们都知道,如今注册微信需要绑定手机号码,而开通微信支付则需要实名认证,身份信息和金钱及信誉息息相关,如果身份信息被盗用,可就麻烦了。
但往往被盗注都是神不知鬼不觉的,那么,如何才能知道自己的身份信息有没有被盗去注册其他微信账号呢?如何知道自己名下到底绑定了几个微信呢?
今天为了大家更方便的查询,给大家提供了一个便捷的一键查询入口,这个查询入口是微信提供的喔,是安全可靠的,可以放心使用,喜欢的小伙伴快来“雷科技”公众号内回复【账号查询】即可获取。(查询方式有两种,对于一键查询不放心的朋友可以使用常规查询只是,路径比较繁琐,可以跟一键查询一并获取)
通过查询入口打开后,就会直接进入到实名查询的界面,直接选择“查询名下账户”就好。
然后就会直接进入身份验证页面,输入你的姓名和身份证后,点击“下一步”就会进行人脸识别验证,就可以查到结果了。
人脸验证后,就会显示你身份绑定的所有微信账号了。
如果查到有不认识的账户,或者自己废弃的账号,点击“清除”,并将该账号“确认冻结”即可。
通过这个方法,及时查询并将陌生账号清除,可以更好地保障你的信息和财物安全。如果你还不知道这个小技巧,那赶紧学起来自查一下吧。
可能有些小伙伴对这个查询入口的安全问题还有所顾虑。所以最后再跟大家说明一下:这个查询入口是微信提供的,是安全可靠的,可以放心使用!