Check if view element is added to layout or not programmatically
android, android-emulator, android-intent, android-layout, performance
Solution
I think you can simply use
findViewById(your_view_id)
method: If its result is null the view does not exists, otherwise the view is present
Problem
In my fragment class, I add a child view element programmatically to my layout conditionally : ``` LinearLayout child = (LinearLayout) inflater.inflate(R.layout.child_view, null); LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT,100); container.addView(child, params); ``` Since the above code will be run conditionally, so, at some point, I would like to check if the child view has added or not, how to make this checking programmatically?