mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-17 15:24:55 +00:00
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
|
<?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"
|
||
|
android:clickable="true">
|
||
|
|
||
|
<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>
|