手机3ds账号密码忘了了拿去修,里面QQ账号会不会保存下来?

手机密码忘了拿去修,里面QQ账号会不会保存下来?_百度知道
手机密码忘了拿去修,里面QQ账号会不会保存下来?
手机密码忘了拿去修,里面QQ账号会不会保存下来?
我有更好的答案
若手机屏幕锁密码忘记,建议您尝试通过远程控制功能解锁:手机需要支持Samsung Dive远程控制功能,且开启远程控制、移动数据(或WLAN);手机绑定三星账户,请登陆【查找我的手机】网址,使用三星账户登陆后,点击“解锁我的设备”,通过此方式操作后将会把之前设置的锁屏方式更改为默认的滑动解锁方式。若手机不支持远程控制功能或不符合远程控制功能使用要求,请您将机器送到三星服务中心,由售后工程师帮助您进行安全解锁。
三星产品问答服务
主营:电子产品
为您推荐:
其他类似问题
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。仿QQ的密码保存,点击按钮选择其他账号
观察QQ的密码保存效果有以下几个特点:
1.新的账号会保存起来,如果是从下拉列表里选择的账号则不会保存;
2.点击向下的箭头会展开以前登陆过的按钮;
3.如果删除账号的一个字符,密码都会消失;
4.打开这个页面就会显示上一次登录的账号,如果没有为空白;
5.如果只删除密码而账号不变;并且删除一个字符整个字符串全部清零;
6.如果再下拉列表里选择一组账号密码,如果在账号的栏里点击删除,会清空密码栏;如果在密码栏点击删除,也会清空密码栏。如果是因为删除账号而导致密码栏被清空,再次输入密码时后再点击删除账号,密码栏不会被清空。密码栏被清空后再输入一组密码再次删除密码密码栏不会被清空。
解决方案:
第1.:把每一个组密码都放到sp中,比如第一组的账号的键值是name0,密码的键值是pwd0;假设一共存储了n组密码,第n组的账号的键值是name n-1,密码 的键值是pwd n-1;、
第2:点击向下的箭头,则会弹出一个popupwindow,里面是自己写listView,然后用map&String,String&将SP存储的所有账号密码getAll;得到map.size,遍历整个map将其存储到表。点击每个listview子项时,将子项的内容赋值到密码框和账号框;
第3.:为账号框添加监听事件;
第4.:我有三个方案,第一是登录时把账号密码放到saveInstanceState,再启动这个页面时检查赋值的,但是不知道为什么就是没有成功;第二个方案就是当我每当启动这个页面就把SP存储的数据Map.getAll;当我登陆的时候我把当前我用来登录的账号密码的键值设置为最大,打个比方说:假如我之前存储了5个账号,如果我用name2的账号密码的登陆;那么登录时我将name2的账号密码改为name4/pwd4;原先的name3--name4变为name2--name3;当我重新打开这个页面时直接将键值号最大的账号密码直接放入密码栏账号栏;第三个方案也是我采用
的方案,直接再新设置一个SP专门存放登录的账号密码;
第5..:为密码栏设置监听事件;
第6.:我设置了两个Boolean变量,初始化为false;当页面打开密码框账号框被赋值或者是我从listView里面选择了一组账号密码从而密码框账号框被赋值时,两个变量被赋值为true;当账号密码其中一个被修改时,其对应的Boolean赋值为false;把之前设置的密码框账号框的监听事件用Boolean的判定下,当两个Boolean都不是true时,两个框才能随便修改;
这是登录界面的布局:activity_second_login.xml
&?xml version="1.0" encoding="utf-8"?&
&RelativeLayout 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"
android:background="@drawable/loginbg"
tools:context=".SecondLogin"&
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_centerInParent="true"
android:id="@+id/textView2" /&
&RelativeLayout
android:background="@drawable/loginkuang"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_above="@+id/textView2"
android:layout_alignParentStart="true"
android:id="@+id/relativeLayout"
android:layout_alignParentLeft="true"&
&ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:src="@drawable/youjian"
android:layout_marginLeft="15dp"
android:id="@+id/imageView21" /&
android:layout_width="2dp"
android:layout_height="40dp"
android:layout_centerVertical="true"
android:layout_toEndOf="@+id/imageView21"
android:layout_marginStart="12dp"
android:background="#2b2b2b"
android:id="@+id/textView57"
android:layout_toRightOf="@+id/imageView21"
android:layout_marginLeft="12dp" /&
&RelativeLayout
android:layout_width="300dp"
android:layout_height="45dp"
android:id="@+id/parent"
android:layout_centerVertical="true"
android:layout_toEndOf="@+id/textView57"
android:layout_toRightOf="@+id/textView57"&
android:layout_marginLeft="10dp"
android:hint="请输入账号/手机号"
android:textColorHint="#FFFFFF"
android:layout_width="218dp"
android:layout_height="45dp"
android:textColor="#FFFFFF"
android:maxLength="11"
android:layout_centerVertical="true"
android:id="@+id/zhanghuming"
android:background="#00FFFFFF" /&
&ImageView
android:layout_width="72px"
android:layout_height="72px"
android:layout_marginRight="10dp"
android:id="@+id/select"
android:src="@drawable/xiangxiajiantou"
android:layout_centerVertical="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true" /&
&/RelativeLayout&
&/RelativeLayout&
&RelativeLayout
android:background="@drawable/loginkuang"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_below="@+id/textView2"
android:layout_alignParentStart="true"
android:id="@+id/relativeLayout2"
android:layout_alignParentLeft="true"&
&ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/suo"
android:layout_marginLeft="15dp"
android:id="@+id/imageView22"
android:layout_centerVertical="true"
android:layout_alignParentStart="true"
android:layout_marginStart="20dp"
android:layout_alignParentLeft="true" /&
android:layout_width="2dp"
android:layout_height="40dp"
android:background="#2b2b2b"
android:layout_centerVertical="true"
android:layout_marginStart="14dp"
android:layout_toEndOf="@+id/imageView22"
android:id="@+id/textView58"
android:layout_marginLeft="14dp"
android:layout_toRightOf="@+id/imageView22" /&
android:layout_marginLeft="10dp"
android:hint="请输入密码"
android:maxLength="11"
android:textColorHint="#FFFFFF"
android:layout_width="300dp"
android:inputType="textPassword"
android:textColor="#FFFFFF"
android:layout_height="45dp"
android:layout_alignTop="@+id/textView58"
android:layout_toEndOf="@+id/textView58"
android:id="@+id/mima"
android:background="#00FFFFFF"
android:layout_toRightOf="@+id/textView58" /&
&/RelativeLayout&
&ImageView
android:layout_width="80dp"
android:layout_height="80dp"
android:src="@drawable/loginshipin"
android:layout_above="@+id/relativeLayout"
android:layout_centerHorizontal="true"
android:layout_marginBottom="56dp" /&
android:layout_width="200dp"
android:layout_height="40dp"
android:text="登 录"
android:textSize="22dp"
android:textColor="#FFFFFF"
android:background="@drawable/loginbutton"
android:layout_marginTop="44dp"
android:layout_below="@+id/relativeLayout2"
android:layout_centerHorizontal="true"
android:id="@+id/logainmainbutton" /&
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="忘记密码?"
android:textColor="#FFFFFF"
android:layout_below="@+id/logainmainbutton"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp"
android:id="@+id/loginmaintextview2" /&
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="注册账号?"
android:textColor="#FFFFFF"
android:layout_below="@+id/logainmainbutton"
android:layout_centerHorizontal="true"
android:layout_marginTop="60dp"
android:id="@+id/loginmaintexrview1" /&
&RelativeLayout
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginBottom="55dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"&
android:layout_width="100dp"
android:layout_height="4dp"
android:background="#BBBBBB"
android:id="@+id/textView59"
android:layout_centerVertical="true"
android:layout_toStartOf="@+id/textView63"
android:layout_marginEnd="27dp"
android:layout_toLeftOf="@+id/textView63"
android:layout_marginRight="27dp" /&
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18dp"
android:text="or"
android:textColor="#FFFFFF"
android:layout_gravity="center"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:id="@+id/textView63" /&
android:layout_width="100dp"
android:layout_height="4dp"
android:background="#BBBBBB"
android:layout_centerVertical="true"
android:layout_toEndOf="@+id/textView63"
android:layout_marginStart="27dp"
android:layout_toRightOf="@+id/textView63"
android:layout_marginLeft="27dp" /&
&/RelativeLayout&
&ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_qq"
android:layout_marginBottom="10dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:id="@+id/qqloginway" /&
&ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_weixin"
android:layout_marginBottom="10dp"
android:layout_marginRight="40dp"
android:layout_alignParentBottom="true"
android:layout_toStartOf="@+id/qqloginway"
android:id="@+id/wechatloginway"
android:layout_toLeftOf="@+id/qqloginway" /&
&ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_xinlang"
android:layout_marginLeft="40dp"
android:layout_marginBottom="10dp"
android:layout_alignParentBottom="true"
android:layout_toEndOf="@+id/qqloginway"
android:id="@+id/renrenloginway"
android:layout_toRightOf="@+id/qqloginway" /&
&/RelativeLayout&
其中PopupWindow需要加载一个布局option.xml
&?xml version="1.0" encoding="utf-8"?&
&LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:background="#FFFFFF"
android:layout_height="match_parent"&
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/op"&&/ListView&
&/LinearLayout&ListView的子项还需要写一个单独的布局:items.xml
&?xml version="1.0" encoding="utf-8"?&
&RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="60dp"&
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/item"
android:layout_marginLeft="10dp"
android:layout_centerVertical="true"
android:textSize="20dp"/&
&/RelativeLayout&然后是SecondLogin.java:public class SecondLogin extends AppCompatActivity implements View.OnClickListener{
private Button button3;
private ImageView imageButton1,imageButton2,imageButton,
private TextView textView1,textView2;
public static
SecondLogin instance =
private SharedP
private SharedPreferences.E
private SharedPreferences sP
private Map&String, String&
private PopupW
private LinearL
private EditText zhanghuming,
private ListView listV
private int width,
Boolean fir=false,sec =
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second_login);
initSetting();
initPopWindow();
initView();
private void initView() {
zhanghuming = (EditText) findViewById(R.id.zhanghuming);
mima = (EditText) findViewById(R.id.mima);
select = (ImageView) findViewById(R.id.select);
imageButton1 = (ImageView) findViewById(R.id.qqloginway);
imageButton2 = (ImageView) findViewById(R.id.renrenloginway);
imageButton = (ImageView) findViewById(R.id.wechatloginway);
button3 = (Button) findViewById(R.id.logainmainbutton);
textView1 = (TextView) findViewById(R.id.loginmaintexrview1);
textView2 = (TextView) findViewById(R.id.loginmaintextview2);
imageButton.setOnClickListener(this);
imageButton1.setOnClickListener(this);
imageButton2.setOnClickListener(this);
button3.setOnClickListener(this);
textView1.setOnClickListener(this);
textView2.setOnClickListener(this);
select.setOnClickListener(this);
pref = PreferenceManager.getDefaultSharedPreferences(this);
initData();
zhanghuming.addTextChangedListener(textWatcher);
mima.addTextChangedListener(a);
private void initData() {
String name1 = pref.getString("name1","");
String pwd1 = pref.getString("pwd1","");
zhanghuming.setText(name1);
mima.setText(pwd1);
if(!name1.equals("")){
if(!name1.equals("")){
private void initSetting() {
instance =
SysApplication.getInstance().addActivity(this);//透明状态栏
if (Build.VERSION.SDK_INT &= Build.VERSION_CODES.KITKAT) {
Window window = getWindow();// Translucent status bar
window.setFlags(
WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS,
WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
private TextWatcher textWatcher = new TextWatcher(){
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
if(fir == true){
mima.setText("");
public void afterTextChanged(Editable editable) {
private TextWatcher a= new TextWatcher(){
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
o =mima.getText().toString().length();
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
if(o&mima.getText().toString().length() && sec == true) {
mima.setText("");
public void afterTextChanged(Editable editable) {
public void onClick(View view) {
switch (view.getId()){
case R.id.qqloginway ://向qq登录页面跳转
case R.id.wechatloginway://向微信登录页面跳转
case R.id.renrenloginway ://向新浪登录页面跳转
case R.id.loginmaintexrview1 ://向注册页面跳转
case R.id.loginmaintextview2 ://向帮助页面跳转
case R.id.select:
pw.showAsDropDown(zhanghuming,-20,20);
case R.id.logainmainbutton :
initSaveData();
if (i == 0) {
i = map.size()/2;
if(!isexist()) {
// 如果不存在,则保存
String name = zhanghuming.getText().toString().trim();
String pwd = mima.getText().toString().trim();
if (!"".equals(name) && !"".equals(pwd)) {
sPreferences.edit().putString("name" + i, name)
.putString("pwd" + i, pwd).commit();
Toast.makeText(SecondLogin.this, "用户名与密码已经记住,下次进入软件时将生效!", Toast.LENGTH_SHORT).show();
Intent intent2 = new Intent(SecondLogin.this, MainView.class);
startActivity(intent2);
private void initPopWindow() {
sPreferences = getSharedPreferences("session", MODE_PRIVATE);
map = (Map&String, String&) sPreferences.getAll();
List&String& list = new ArrayList&String&();
for (int i = 0; i & (map.size() / 2); i++) {
String name = sPreferences.getString("name" + i, "");
list.add(name);
// 用4个参数的指定,哪个listview中的textview
ArrayAdapter&String& adapter = new ArrayAdapter&String&(this,
R.layout.items, R.id.item, list);
option = (LinearLayout) getLayoutInflater().inflate(R.layout.option,
// 要在这个linearLayout里面找listView......
listView = (ListView) option.findViewById(R.id.op);
listView.setAdapter(adapter);
//获取屏幕的宽度并设置popupwindow的宽度为width,我这里是根据布局控件所占的权重
WindowManager wManager = (WindowManager) getSystemService(this.WINDOW_SERVICE);
width = wManager.getDefaultDisplay().getWidth() * 3 / 5;
//实例化一个popupwindow对象
pw = new PopupWindow(option, width, LinearLayout.LayoutParams.WRAP_CONTENT, true);
ColorDrawable dw = new ColorDrawable(00000);
pw.setBackgroundDrawable(dw);
pw.setOutsideTouchable(true);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView&?& adapterView, View view,
int position, long id) {
// 获取选中项内容及从sharePreferences中获取对应的密码
String username = adapterView.getItemAtPosition(position)
.toString();
String pwd = sPreferences.getString("pwd" + position, "");
zhanghuming.setText(username);
mima.setText(pwd);
// 选择后,popupwindow自动消失
pw.dismiss();
private void initSaveData() {
String text = zhanghuming.getText().toString();
String password_1 = mima.getText().toString();
editor = pref.edit();
editor.putString("name1",text);
editor.putString("pwd1",password_1);
editor.commit();
private boolean isexist() {
int in = 0;
sPreferences = getSharedPreferences("session", MODE_PRIVATE);
map = (Map&String, String&) sPreferences.getAll();
for(; in & (map.size() / 2); in++){
if(zhanghuming.getText().toString().
equals(sPreferences.getString("name" + in, ""))){
if(in & (map.size() / 2)){
initpopwindow()方法学的这位大神的博客不过略有改动:我这个工程34m我也不知道怎样弄的小一点,文档里有布局里面用的资源:
如果这个文件解压后不能再AS上打开,参考这里:
没有更多推荐了,
加入CSDN,享受更精准的内容推荐,与500万程序员共同成长!腾讯手机管家防盗密码忘了怎么办_百度文库
您的浏览器Javascript被禁用,需开启后体验完整功能,
赠送免券下载特权
10W篇文档免费专享
部分付费文档8折起
每天抽奖多种福利
两大类热门资源免费畅读
续费一年阅读会员,立省24元!
腾讯手机管家防盗密码忘了怎么办
阅读已结束,下载本文需要
想免费下载更多文档?
定制HR最喜欢的简历
下载文档到电脑,同时保存到云知识,更方便管理
加入VIP
还剩5页未读,
定制HR最喜欢的简历
你可能喜欢后使用快捷导航没有帐号?
查看: 2973|回复: 12
注册时间最后登录阅读权限10积分230精华0帖子
QQ土人 , 积分 230, 距离下一级还需 370 积分
&&GM麻烦你帮忙找回2个QQ号码,每个QQ号码里面有2个小号,是QQ华夏百级区(乐今宵),4个角色名字分别是
一如既往丶爱丨你& && &&&ID:78896& && && &暗巫& &20级
丿此生丶属于丨你& && &&&ID:77948& && && &幻师& & 33级
绝o版丨商o人丶赞& && & ID:78897& && && & 暗巫&&20级
丿2ol6丨哈弗丶6& && && &ID:77949& && && &&&幻师 41级
& &我这2个QQ号码(4个角色)是用来挂寄售卖东西的,前几天电脑坏了,人家把我电脑格式化做系统,新申请的QQ号码没保存,被格式化删没了,现在特么的无奈,麻烦GM帮忙找回QQ号码,万分感激。
注册时间最后登录阅读权限100积分68709精华0帖子
快到碗里来~~~~O(∩_∩)O
亲 请勿在论坛上公布账号资料等信息&&再说了 论坛上米有GM只有玩家版主呢&&后台数据的我们也没办法查证的&&您这问题还请咨询在线客服&&希望您的问题能得到解决&&另外亲别轻易相信在论坛上找上门的所谓GM哦~
官方未设立客服QQ,也不会通过QQ和邮箱联系索要密码等相关安全资料
注册时间最后登录阅读权限10积分230精华0帖子
QQ土人 , 积分 230, 距离下一级还需 370 积分
灬妍之有李灬 发表于
亲 请勿在论坛上公布账号资料等信息&&再说了 论坛上米有GM只有玩家版主呢&&后台数据的我们也没办法查证的& &...
那我怎么办才能找回来啊?
注册时间最后登录阅读权限100积分68709精华0帖子
快到碗里来~~~~O(∩_∩)O
<font color="#7406664 发表于
那我怎么办才能找回来啊?
在官网首页的客户服务——客服专区&&找在线客服帮忙呀~
官方未设立客服QQ,也不会通过QQ和邮箱联系索要密码等相关安全资料
注册时间最后登录阅读权限10积分230精华0帖子
QQ土人 , 积分 230, 距离下一级还需 370 积分
联系不了,只能登录我这个号码不能描述我要处理的问题!
注册时间最后登录阅读权限100积分68709精华0帖子
快到碗里来~~~~O(∩_∩)O
<font color="#7406664 发表于
联系不了,只能登录我这个号码不能描述我要处理的问题!
那就用这个Q登陆上去咨询呀,小斑以前忘记一个小号,也是用这个办法的。亲 试试吧~
官方未设立客服QQ,也不会通过QQ和邮箱联系索要密码等相关安全资料
注册时间最后登录阅读权限10积分230精华0帖子
QQ土人 , 积分 230, 距离下一级还需 370 积分
没人回复, 这个客服号码
注册时间最后登录阅读权限100积分68709精华0帖子
快到碗里来~~~~O(∩_∩)O
<font color="#7406664 发表于
没人回复, 这个客服号码
亲&&点入后选择游戏操作问题&&有个人工入口的& &在线客服就在那呢&&如图:
(0 Bytes, 下载次数: 35)
15:08 上传
点击文件名下载附件
官方未设立客服QQ,也不会通过QQ和邮箱联系索要密码等相关安全资料
注册时间最后登录阅读权限10积分230精华0帖子
QQ土人 , 积分 230, 距离下一级还需 370 积分
麻烦你帮个忙找回我账号好吗、谢谢了,我现在都没法找回了!
注册时间最后登录阅读权限100积分68709精华0帖子
快到碗里来~~~~O(∩_∩)O
<font color="#7406664 发表于
麻烦你帮个忙找回我账号好吗、谢谢了,我现在都没法找回了!
亲 涉及到这些数据问题&&小斑真的无能为力查证的&&。。
官方未设立客服QQ,也不会通过QQ和邮箱联系索要密码等相关安全资料
注册时间最后登录阅读权限10积分230精华0帖子
QQ土人 , 积分 230, 距离下一级还需 370 积分
哎 这样是没办法了& &**的我不得继续再玩了
注册时间最后登录阅读权限100积分31405精华0帖子
<font color="#7406664 发表于
哎 这样是没办法了& &**的我不得继续再玩了
还有一种可行方法:如果楼主 之前登录游戏有勾选记住账号的话,可以尝试使用恢复数据的软件。
恢复一下游戏安装盘的部分数据,找到TCLS文件夹下CONFIG文件夹里面的SeriQ.dat文件。
以记事本的方式打开它,就可以找到之前登录过的QQ账号。
16:46 上传
注册时间最后登录阅读权限20积分20950精华0帖子
守卫队长, 积分 20950, 距离下一级还需 4050 积分
反应客服吧
Powered by已解决问题
如何从手机保存的qq密码中提取密码? 真汗,qq密码好久没输入了,都忘记了 -。-||?请帮忙
浏览次数:5179
用手机阿里扫一扫
最满意答案
该答案已经被保护
真能提取,又是一个很大的安全漏洞了,这个是经过不可逆加密的,应该不能,但是可以去忘记密码那边申诉一下,回答对了问题,就让你重置密码了,问题也能解决不是。
答案创立者
以企业身份回答&
正在进行的活动
生意经不允许发广告,违者直接删除
复制问题或回答,一经发现,拉黑7天
快速解决你的电商难题
店铺优化排查提升2倍流量
擅长&nbsp 店铺优化
您可能有同感的问题
扫一扫用手机阿里看生意经
问题排行榜
当前问题的答案已经被保护,只有知县(三级)以上的用户可以编辑!写下您的建议,管理员会及时与您联络!
server is ok}

我要回帖

更多关于 上海外服账号密码忘了 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信