你的性格和运势竟然和手机号有关,快来看看你的手机号,是吉是凶
上期我们聊了数字能量之从身份证最后一位数看你的婚姻,今天继续聊数字能量,与您生活密不可分的手机号码,每个人都有手机,每个手机号都是独一无二的,手机是你和别人沟通的桥梁,随着科技的发展,手机也成了你的随身物品,与你的生活息息相关,但是你知道你的手机号也是有吉凶之分的吗?手机号的数理吉凶就像风水、阳宅会影响运势命理的意义一样,也以五行数理分析手机号码吉凶,并通过手机号码分析手机主人的性格和运势吉凶。
李易聊易礼,用最通俗的语言来说易经,用最简单的方法教你最实用的易经,活学活用,现学现用,让易经不再神秘。
通过五行数理分析手机号码的吉凶我们需要把手机号码按组分成以下几种:
1:天医 13 31 68 86 49 94 27 72
2:生气 14 41 67 76 39 93 28 82
3:延年 19 91 87 78 43 34 26 62
4:伏位 11 22 33 44 66 77 88 99
5:绝命 12 21 69 96 84 48 37 73
6:祸害 17 71 89 98 64 46 32 23
7:五鬼 18 81 79 97 36 63 24 42
8:六煞 16 61 74 47 38 83 92 29
很多朋友看到这里总认为从名字上看天医、生气、延年、伏位代表的号码是好的,绝命、祸害、五鬼、六煞代表的号码是不好的,其实不是这样的,不同数组相配会得到不同的磁场能量,同时适合不同的工作性质的人使用,会产生不同的结果。
每个数组都有每个数组的能量,能量相加会产生不同的磁场,影响号码主人的性格和运势,数字能量就是这么神奇,不信我们一起来看看:
绝命包含八个数组:12 21 69 96 84 48 37 73
1:性格:勇敢、重朋友、反应快、企图心旺盛、判断力敏锐、敢冒险、心软、执着、好胜心强。
2:缺点:冲动容易暴躁、不圆融、以自我为中心、情绪管理差、不守信用、情绪不稳定、易有官司、性格偏激、好赌、轻信他人、犯上抗上。
3:感情:易分手很难有结果、家庭协调能力差、离婚率高、爱恨分明。
4:事业:绝命磁场的人具有超强的企划、谋略和判断能力、头脑反应快,容易成为老板的智囊团。他们喜欢挑战不可能的工作,适合投资、股票、金融理财等行业
5:钱财:绝命磁场的人很会赚钱,但是他花钱的速度会大于赚钱的速度,左手进财右手出财,有固定资产但是缺乏现金。
6:健康:要注意肝肾、糖尿病、泌尿系统疾病。
手机号上有绝命数组不用害怕,关键是看这组数字的导向,举个例子:21这组数字是绝命,普通理解这个数组不好,其实不然,我们来看看绝命数组和其他数组相配以后会出现什么样的磁场以及什么样的结果:比如213是由21(绝命)和13(天医)两个数组组成的,这个组合是绝命加天医,手机尾号是213的人,投资容易赚钱。比如218是由21(绝命)和18(五鬼)两个数组组成的,这个组合是绝命加五鬼,手机尾号是218的人投资就会亏,而且是大亏。
今天先聊这么多,风水无处不在,时时刻刻影响着我们的性格和命运,对手机号判断吉凶有兴趣的朋友关注,想知道自己手机号吉凶的请私信。
Google官方网络框架Volley实战——QQ吉凶测试,南无阿弥陀佛
这次我们用第三方的接口来做一个QQ吉凶的测试项目,代码依然是比较的简单
无图无真相
直接撸代码了,详细解释都已经写在注释里了
activity_main.xml
<LinearLayout 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:orientation=\"vertical\" >
<EditText
android:id=\"@+id/et_qq\"
android:layout_width=\"match_parent\"
android:layout_height=\"wrap_content\"
android:layout_marginTop=\"10dp\"
android:background=\"@drawable/whitebg\"
android:gravity=\"center\"
android:hint=\"请输入QQ号\"
android:lines=\"3\"
android:numeric=\"integer\" />
<Button
android:id=\"@+id/btn_go\"
android:layout_width=\"match_parent\"
android:layout_height=\"wrap_content\"
android:layout_margin=\"15dp\"
android:layout_marginTop=\"5dp\"
android:background=\"@drawable/graybg\"
android:text=\"求佛\" />
<TextView
android:id=\"@+id/tv_conclusion\"
android:layout_width=\"wrap_content\"
android:layout_height=\"wrap_content\"
android:layout_margin=\"15dp\"
android:layout_marginBottom=\"5dp\"
android:layout_marginTop=\"5dp\"
android:text=\"结果\"
android:textSize=\"18sp\" />
<View
android:layout_width=\"match_parent\"
android:layout_height=\"1dp\"
android:background=\"#fff\" />
<TextView
android:id=\"@+id/tv_analysis\"
android:layout_width=\"wrap_content\"
android:layout_height=\"wrap_content\"
android:layout_margin=\"15dp\"
android:layout_marginTop=\"5dp\"
android:text=\"分析\"
android:textSize=\"18sp\" />
<com.lgl.qq.WaterRippleView
android:layout_width=\"match_parent\"
android:layout_height=\"0dp\"
android:layout_weight=\"1\" >
</com.lgl.qq.WaterRippleView>
</LinearLayout>
MainActivity
package com.lgl.qq;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import com.android.volley.Request.Method;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.Response.Listener;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;
public class MainActivity extends Activity implements OnClickListener {
private EditText et_qq;
private Button btn_go;
private TextView tv_conclusion, tv_analysis;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
private void initView() {
// 初始化控件
et_qq = (EditText) findViewById(R.id.et_qq);
btn_go = (Button) findViewById(R.id.btn_go);
btn_go.setOnClickListener(this);
tv_conclusion = (TextView) findViewById(R.id.tv_conclusion);
tv_analysis = (TextView) findViewById(R.id.tv_analysis);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn_go:
if (et_qq == null) {
Toast.makeText(MainActivity.this, \"都不留个QQ号佛主怎么算尼?\",
Toast.LENGTH_LONG).show();
} else {
Volley_Get();
}
break;
}
}
private void Volley_Get() {
//获取到输入的QQ号
String qq = et_qq.getText().toString();
//第三方接口
String url = \"/d/file/gt/2023-12/jriouevf3g1 qq;
RequestQueue queue = Volley.newRequestQueue(this);
StringRequest request = new StringRequest(Method.GET, url,
new Listener<String>() {
// 成功
@Override
public void onResponse(String json) {
//Volley解析得到json
Volley_Json(json);
}
}, new Response.ErrorListener() {
// 失败
@Override
public void onErrorResponse(VolleyError errorLog) {
Toast.makeText(MainActivity.this,
\"失败:\" + errorLog.toString(), Toast.LENGTH_LONG)
.show();
}
});
queue.add(request);
}
//解析json
private void Volley_Json(String json) {
try {
//获得JSONObject对象
JSONObject jsonObject = new JSONObject(json);
//解析result
JSONObject object = jsonObject.getJSONObject(\"result\");
//解析data
JSONObject object1 = object.getJSONObject(\"data\");
tv_conclusion.setText(\"结果:\" + object1.getString(\"conclusion\"));
tv_analysis.setText(\"分析:\" + object1.getString(\"analysis\"));
} catch (JSONException e) {
Toast.makeText(MainActivity.this, \"施主都不留个QQ号佛主怎么算尼?\",
Toast.LENGTH_LONG).show();
e.printStackTrace();
}
}
}
这里有几点需要说明
1.项目中的水波纹特效请看:[Android特效专辑(一)——水波纹过渡特效(首页)](http://blog.csdn.net/qq_26787115/article/details/50439020)
2.项目中的Button样式:
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<shape xmlns:android=\"http://schemas.android.com/apk/res/android\" >
<solid android:color=\"#ffDEDEDE\" />
<corners android:radius=\"2.0dp\" />
</shape>
3.项目中的EditText样式
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<shape
xmlns:android=\"http://schemas.android.com/apk/res/android\">
<solid android:color=\"#ffffffff\"/>
<corners android:radius=\"2.0dp\"/>
</shape>
Demo下载:http://download.csdn.net/detail/qq_26787115/9397673