码迷,mamicode.com
首页 > 移动开发 > 详细

Android之在View中执行Activity的跳转

时间:2015-02-03 16:36:46      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

我们经常会在Activity中用到继承LinearLayout或者其他布局的View,但是又想在View的代码里面去执行

Activity的跳转,直接使用startActivity会报错,那么就要用到getContext()来“Returns the context

the view is running in, through which it can access the current theme, resources, etc.”

示例代码如下:

// 跳转到相应的Activity
Intent intent1 = new Intent();
intent1.setClass(getContext(), LocationSelectActivity.class);
getContext().startActivity(intent1);

 

Android之在View中执行Activity的跳转

标签:

原文地址:http://www.cnblogs.com/jayhust/p/4270097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!