Skip to content

Instantly share code, notes, and snippets.

@aysesenses
Created November 17, 2017 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aysesenses/3220ff1a3651f6166ea5087f7d21a695 to your computer and use it in GitHub Desktop.
Save aysesenses/3220ff1a3651f6166ea5087f7d21a695 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:clickable="true"
android:background="?android:attr/selectableItemBackground"
android:orientation="vertical">
<TextView
android:id="@+id/baslik"
android:textColor="@color/baslik"
android:textSize="16dp"
android:textStyle="bold"
android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/tur"
android:layout_below="@id/baslik"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/yil"
android:textColor="@color/yil"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_height="wrap_content" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment