omidaminiva
omidaminiva
Thanks I will give it a try
that was a typo parallaxGridView.setOnItemClickListener(new OnItemClickListener(){ @Override public void onItemClick(AdapterView parent, View view, int position, long id) { Log.v("Item Clicked",position+""); } }); you are calling setParallaxView after setOnItemClickListener would that...
this is how my code looks like: ``` public class LiteProfileDetailFragment extends Fragment implements, OnItemClickListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup...
view and parent are correct parent comes as com.poliveira.apps.parallaxlistview.ParallaxGridView and view as android.widget.LinearLayout which my widget item is there are other factors that could cause the problem: 1- I have...
Then that is a bug that should be looked at. I just used tags to identify the row. So inside bindView I had `convertView.setTag(cursor.getString(cursor .getColumnIndexOrThrow(DataConstants.WUID)));` which wuid for me is...
I used the this view inside a fragment. And when I pass html to it the view is stuck and cannot scroll to see anything at the bottom. HTML ```html...
yes I agree it is not a good idea since you cannot choose the scaletype for background. I will look forward to see this feature on this library.
I tried the bg color and border and it works great.
In manifest android:minSdkVersion="8" change to higher number. I changed it to 15 and it started working. It could be because my application's minSdkVersion is 15.
Yes I already have a webview to do that, but I do not want the user see loading again and again. I want to create a seamless experience for user.