イメージプロジェクチカルオールの幅を設定する方法は?どのようにnullオブジェクトの参照を解決するには?
これは、あなたが実際にそれらを初期化する前にtxttwo
txtthree
のいずれかを使用しようとする私のコード、
txtone = (ImageView)findViewById(R.id.imageView);
txttwo = (ImageView)findViewById(R.id.imageView2);
height = metrics.heightPixels;
width = metrics.widthPixels;
if (height == 800 && width == 1217) {
int a = txtone.getMeasuredWidth();
txtone.getLayoutParams().width = 280;
txttwo.getLayoutParams().width = 280;
txtthree.getLayoutParams().width = 280;
txtone.requestLayout();
txttwo.requestLayout();
txtthree.requestLayout();
を初期化できませんでしたそれはあなたのtxtoneがまだ膨張していない、あなたがそれに –
txttwoをレイアウトパラメータの操作を行っていること、
null
です –@Aman Grovercanあなたはそれを行う方法を教えてください – Aruna