|
@ -31,6 +31,7 @@ import com.amap.api.maps.model.LatLng;
|
31
|
31
|
import com.electric.chargingpile.R;
|
32
|
32
|
import com.electric.chargingpile.activity.AlterOneActivity;
|
33
|
33
|
import com.electric.chargingpile.activity.ChargingQianDaoActivity;
|
|
34
|
import com.electric.chargingpile.activity.ChatActivity;
|
34
|
35
|
import com.electric.chargingpile.activity.ImagePagerActivity;
|
35
|
36
|
import com.electric.chargingpile.activity.LoginActivity;
|
36
|
37
|
import com.electric.chargingpile.activity.MainMapActivity;
|
|
@ -894,6 +895,7 @@ public class DetailsFragment extends Fragment implements View.OnClickListener, O
|
894
|
895
|
private AlignTextView detail_park_cost;
|
895
|
896
|
private AlignTextView detail_remark;
|
896
|
897
|
private AlignTextView detail_zhan_name;
|
|
898
|
private ImageView chat_share_bar;
|
897
|
899
|
private LinearLayout red_paper_bag_top;
|
898
|
900
|
private AlignTextView detail_time;
|
899
|
901
|
public static TextView detail_list_num;
|
|
@ -927,6 +929,8 @@ public class DetailsFragment extends Fragment implements View.OnClickListener, O
|
927
|
929
|
detail_zhan_pic = (ImageView) v.findViewById(R.id.detail_zhan_pic);
|
928
|
930
|
|
929
|
931
|
detail_zhan_name = (AlignTextView) v.findViewById(R.id.detail_zhan_name);
|
|
932
|
chat_share_bar = v.findViewById(R.id.chat_share_bar);
|
|
933
|
chat_share_bar.setOnClickListener(this);
|
930
|
934
|
red_paper_bag_top = v.findViewById(R.id.red_paper_bag_top);
|
931
|
935
|
detail_grade = (TextView) v.findViewById(R.id.detail_grade);
|
932
|
936
|
detail_picnum = (TextView) v.findViewById(R.id.detail_picnum);
|
|
@ -1003,6 +1007,11 @@ public class DetailsFragment extends Fragment implements View.OnClickListener, O
|
1003
|
1007
|
MobclickAgent.onEvent(getActivity(), "0209");
|
1004
|
1008
|
startActivity(new Intent(getActivity(), ChargingQianDaoActivity.class));
|
1005
|
1009
|
break;
|
|
1010
|
case R.id.chat_share_bar: // 聊聊入口
|
|
1011
|
Intent i = new Intent(getContext(), ChatActivity.class);//聊聊页面
|
|
1012
|
i.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
|
|
1013
|
startActivity(i);
|
|
1014
|
break;
|
1006
|
1015
|
}
|
1007
|
1016
|
}
|
1008
|
1017
|
|