android create textview and add it to linearlayout in adapters

ww‮ttual.w‬uri.com
android create textview and add it to linearlayout in adapters
// Inside myViewHolder
LinearLayout linearLayout = itemView.findViewById(R.id.notebody);

// Inside onBindViewHolder
TextView txt = new TextView(holder.linearLayout.getContext());
holder.linearLayout.addView(imageView);
Created Time:2017-09-04 22:51:05  Author:lautturi