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登錄了,是不是被盜了
微信悄悄隱藏的查詢入口,快來查查你的微信有沒被盜用!
最近,新聞頻頻曝光「倒賣微信號」的黑色產業鏈,讓人不禁心慌。我們都知道,如今注冊微信需要綁定手機號碼,而開通微信支付則需要實名認證,身份信息和金錢及信譽息息相關,如果身份信息被盜用,可就麻煩了。
但往往被盜注都是神不知鬼不覺的,那麼,如何才能知道自己的身份信息有沒有被盜去注冊其他微信賬號呢?如何知道自己名下到底綁定了幾個微信呢?
今天為了大家更方便的查詢,給大家提供了一個便捷的一鍵查詢入口,這個查詢入口是微信提供的喔,是安全可靠的,可以放心使用,喜歡的小夥伴快來「雷科技」公眾號內回復【賬號查詢】即可獲取。(查詢方式有兩種,對於一鍵查詢不放心的朋友可以使用常規查詢只是,路徑比較繁瑣,可以跟一鍵查詢一並獲取)
通過查詢入口打開後,就會直接進入到實名查詢的界面,直接選擇「查詢名下賬戶」就好。
然後就會直接進入身份驗證頁面,輸入你的姓名和身份證後,點擊「下一步」就會進行人臉識別驗證,就可以查到結果了。
人臉驗證後,就會顯示你身份綁定的所有微信賬號了。
如果查到有不認識的賬戶,或者自己廢棄的賬號,點擊「清除」,並將該賬號「確認凍結」即可。
通過這個方法,及時查詢並將陌生賬號清除,可以更好地保障你的信息和財物安全。如果你還不知道這個小技巧,那趕緊學起來自查一下吧。
可能有些小夥伴對這個查詢入口的安全問題還有所顧慮。所以最後再跟大家說明一下:這個查詢入口是微信提供的,是安全可靠的,可以放心使用!