从View访问活动变量

时间:2014-11-13 12:07:09

标签: android android-activity view

我有自定义视图设置的Android活动。我需要访问View类中的一些活动变量。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

你的View应该有Activity的上下文,所以在你的CustomView

  

((MyActivity)getContext())。executeCustomMethod();

如果您在xml中添加View,则可以使用像这样的主要父视图行

xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.test.MyActivity"