0
IMPOSIBLE訪問在OnCreate中我把這個片段:機器人負載片段做的ImageView
if(internet == true){
Fragment fragment = null;
fragment = new PasarProjectos();
/*if(esLandscape == true){
contenedor_salvado = findViewById(R.id.contenedor_info);
}*/
if (fragment != null) {
FragmentManager fm = getSupportFragmentManager();
Bundle args = new Bundle();
args.putBoolean("esLandscape", esLandscape);
fragment.setArguments(args);
fm.beginTransaction().add(R.id.container, fragment).commit();
}
findViewById(R.id.imageView17).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
startActivity(new Intent(PasarProjNoMenu.this, InicioNoLogin.class));
}
});
}else{
startActivity(new Intent(PasarProjNoMenu.this, InicioNoLogin.class));
}
和完成的的onCreate
的方法後來我打電話,我嘗試本地化另一種觀點的另一種方法
public void ensenarProjMismaPantalla(String id_s) { //un inflate rellenando los datos y punto
Log.d("La acción ","rellenar campo primero");
ImageView imageView = (ImageView) findViewById(R.id.fotoProj);
}
我知道的imageview是連續的; y在屏幕上,因爲我可以在應用程序運行時看到它,但該應用程序會拋出nullpointerexception錯誤
請寫在那裏你調用這個方法:'ensenarProjMismaPantalla()' – walkmn
進入片段「PasarProjectos.java」 –
我離開的代碼放到一個答案 –