facebook twitter hatena line email

Android/レイアウト/親ビュー削除

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

親ビュー削除サンプル

import android.view.ViewGroup;
ViewGroup view = (ViewGroup) this.getParent();
if (view != null) {
	view.removeView(this);
}