FossifyGallery/app/src/main/res/layout/activity_license.xml

105 lines
3.9 KiB
XML
Raw Normal View History

2016-06-02 21:52:42 +02:00
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/license_holder"
2016-06-02 21:52:42 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/license"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/activity_margin">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/notice"/>
<TextView
android:id="@+id/license_butterknife_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/activity_margin"
android:text="@string/butterknife_title"
android:textColor="@color/colorPrimary"/>
<TextView
android:id="@+id/license_butterknife_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/butterknife_text"/>
<TextView
android:id="@+id/license_photoview_title"
2016-06-02 21:52:42 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/activity_margin"
android:text="@string/photoview_title"
2016-06-02 21:52:42 +02:00
android:textColor="@color/colorPrimary"/>
<TextView
android:id="@+id/license_photoview_text"
2016-06-02 21:52:42 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/photoview_text"/>
2016-06-02 21:52:42 +02:00
<TextView
android:id="@+id/license_glide_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/activity_margin"
android:text="@string/glide_title"
android:textColor="@color/colorPrimary"/>
<TextView
android:id="@+id/license_glide_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/glide_text"/>
2016-10-06 22:56:45 +02:00
<TextView
android:id="@+id/license_cropper_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/activity_margin"
android:text="@string/cropper_title"
android:textColor="@color/colorPrimary"/>
<TextView
android:id="@+id/license_cropper_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cropper_text"/>
<TextView
android:id="@+id/license_filepicker_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/activity_margin"
android:text="@string/filepicker_title"
android:textColor="@color/colorPrimary"/>
<TextView
android:id="@+id/license_filepicker_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/filepicker_text"/>
<TextView
android:id="@+id/license_fileproperties_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/activity_margin"
android:text="@string/fileproperties_title"
android:textColor="@color/colorPrimary"/>
<TextView
android:id="@+id/license_fileproperties_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fileproperties_text"/>
2016-06-02 21:52:42 +02:00
</LinearLayout>
</ScrollView>