2017-07-04 07:31:53 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
2018-08-28 17:25:56 +00:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
2017-07-04 07:31:53 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:textAppearance="@android:style/TextAppearance.Medium"
|
|
|
|
tools:text="Software Name" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/copyright"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/name"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
tools:text="@string/copyright" />
|
|
|
|
</RelativeLayout>
|