[Solved] How do I create a ListView like the YouTube App? [closed]
The most important thing to apply this kind of design is properly implement adapter, which will represent every piece of data (one video in your situation). More or less in for situation it will look like: <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”match_parent” android:layout_height=”wrap_content”> //you main picture <ImageView android:layout_width=”fill_parent” android:layout_height=”fill_parent”> //layout to place other info like number of likes, … Read more