Android/レイアウト/親ビュー削除
提供: 初心者エンジニアの簡易メモ
親ビュー削除サンプル
import android.view.ViewGroup; ViewGroup view = (ViewGroup) this.getParent(); if (view != null) { view.removeView(this); }
import android.view.ViewGroup; ViewGroup view = (ViewGroup) this.getParent(); if (view != null) { view.removeView(this); }
|