我试图将值从活动传递到自定义视图,然后我可以将其用于绘制。认为这应该很容易,但是在运行时它会继续抛出NullPointerException错误。 任何人可以提供的帮助将不胜感激。提前谢谢。
活动代码:
public class PlayGame_Activity extends ActionBarActivity {
private Game game;
private GameView gameView;
private int cardNumber;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_play_game_);
game = new Game();
cardNumber = 1;
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
gameView = (GameView) findViewById(R.id.gameView1);
}
@Override
protected void onResume() {
int[] testarray = {1,3,5,7,9}; //Real array values will come from game
gameView.setCardNumbers(testarray);
super.onResume();
}
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_play_game_,
container, false);
return rootView;
}
}
查看代码:
public class GameView extends View {
private Paint paint;
private int[] cardNumbers;
public GameView(Context context, AttributeSet attrs) {
super(context, attrs);
paint = new Paint();
}
public void setCardNumbers(int[] array) {
cardNumbers = array;
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
}
}
布局代码
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.numberguessgame.PlayGame_Activity"
tools:ignore="MergeRootFrame" />
和
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.numberguessgame.PlayGame_Activity$PlaceholderFragment" >
<com.example.numberguessgame.GameView
android:id="@+id/gameView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true" />
</RelativeLayout>
所以似乎findviewbyid(gameview1)返回null。关于我应该放置那行代码的任何想法?
答案 0 :(得分:1)
原来是移动
gameView = (GameView) findViewById(R.id.gameView1);
进入onResume()而不是onCreate()修复了问题。
答案 1 :(得分:0)
您可以使用EventBus framework将对象从一个活动发送到另一个活动(或其他类的实例)。它帮助了我很多,甚至允许对象在线程中独立于发布线程传递。只需按照以下四个步骤进行操作
实施处理方法:public void onEvent(MyEventType event)
注册订阅者:EventBus.getDefault().register(this)
发布活动:EventBus.getDefault().post(event)
取消注册:EventBus.getDefault().unregister(this)
答案 2 :(得分:0)
我们可以访问片段中的自定义视图变量,因此v可以将值从片段传递到自定义视图。 示例:如果自定义视图“Drawview”包含值“Value”,则v可以在片段中设置Value的值,如下所示:(假设Drawview的id为drawview)
Drawview drawview =(Drawview)view.findValueById(R.id.drawview); drawview.Value =值;
这对我有用。