Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- layout/adapter_berita.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingVertical="5dp">
- <ImageView
- android:id="@+id/ivPosterBerita"
- android:layout_width="match_parent"
- android:layout_height="130dp"
- android:layout_marginHorizontal="10dp"
- android:scaleType="fitXY"
- android:src="@mipmap/ic_launcher"/>
- <TextView
- android:id="@+id/tvJudulBerita"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textSize="18sp"
- android:layout_marginVertical="10dp"
- android:layout_marginHorizontal="10dp"
- android:textColor="@android:color/black"
- android:text="Judul Artikel Berita"/>
- <LinearLayout
- android:layout_marginHorizontal="10dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tvTglTerbit"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Sabtu, 12 Maret 2018."/>
- <TextView
- android:id="@+id/tvPenulis"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="10dp"
- android:text="Oleh : xxx"/>
- </LinearLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement