|
@@ -2,6 +2,7 @@ package com.sikey.skphone.activity;
|
|
|
|
|
|
import android.annotation.SuppressLint;
|
|
import android.annotation.SuppressLint;
|
|
import android.os.Bundle;
|
|
import android.os.Bundle;
|
|
|
|
+import android.util.Log;
|
|
import android.view.View;
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.ImageView;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.LinearLayout;
|
|
@@ -24,6 +25,7 @@ public class CallActivity extends BaseActionActivity {
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_call);
|
|
setContentView(R.layout.activity_call);
|
|
|
|
+ changeStatusBar(false);
|
|
initData();
|
|
initData();
|
|
initView();
|
|
initView();
|
|
}
|
|
}
|
|
@@ -32,6 +34,7 @@ public class CallActivity extends BaseActionActivity {
|
|
Gson gson = new Gson();
|
|
Gson gson = new Gson();
|
|
mType = getIntent().getIntExtra(Constant.INTENT_VIEW_TYPE, 0);
|
|
mType = getIntent().getIntExtra(Constant.INTENT_VIEW_TYPE, 0);
|
|
String value = getIntent().getStringExtra(Constant.INTENT_VIEW_VALUE);
|
|
String value = getIntent().getStringExtra(Constant.INTENT_VIEW_VALUE);
|
|
|
|
+ Log.d(TAG, "initData: " + mType + " value:" + value);
|
|
if (mType == 0) {
|
|
if (mType == 0) {
|
|
mContactModel = gson.fromJson(value, ContactBean.class);
|
|
mContactModel = gson.fromJson(value, ContactBean.class);
|
|
} else {
|
|
} else {
|