Hi In don\'t understand why I get this error: 10-08 10:23:40.433: E/MoreInfoHPW_ViewGroup(10127): Parent view is not a TextView Any help would be appreciated.
L
The second argument to the LayoutInflater seems really weird.
(ViewGroup) findViewById(R.id.layout_pass)
is a reference to a id within the layout that is to be inflated but the argument is used to pass a root layout to the inflated object. Try just passing null
as second argument.
Please see the documentation for the LayoutInflater