2016-08-24 22:05:35 +02:00
|
|
|
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-11-08 13:07:38 +01:00
|
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
2016-08-24 22:05:35 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_marginBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
2016-08-24 22:05:35 +02:00
|
|
|
tools:context="com.github.dfa.diaspora_android.activity.AboutActivity$AboutFragment">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2016-11-08 13:07:38 +01:00
|
|
|
<!-- About -->
|
|
|
|
<android.support.v7.widget.CardView
|
2016-08-25 00:23:20 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
style="?android:attr/buttonBarStyle"
|
|
|
|
card_view:cardElevation="5dp"
|
|
|
|
card_view:cardCornerRadius="5dp">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin_half"
|
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin_half">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@android:style/TextAppearance.DeviceDefault.Large"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/fragment_about__about"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/fragment_about__app_version"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-22 19:22:44 +01:00
|
|
|
android:layout_marginBottom="8dp"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/app_version_with_arg"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/fragment_about__app_codename"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/code_name_witharg"
|
2016-11-22 19:22:44 +01:00
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:visibility="gone"/> <!-- Change later -->
|
2016-11-08 13:07:38 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/dandelion_is_your_companion__appspecific"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_marginBottom="16dp"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
2016-08-25 00:23:20 +02:00
|
|
|
|
2016-11-08 13:07:38 +01:00
|
|
|
<!-- Contribute Code -->
|
|
|
|
<android.support.v7.widget.CardView
|
2016-08-24 22:05:35 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
style="?android:attr/buttonBarStyle"
|
|
|
|
card_view:cardElevation="5dp"
|
|
|
|
card_view:cardCornerRadius="5dp">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin_half"
|
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin_half">
|
2016-08-24 22:05:35 +02:00
|
|
|
|
2016-11-08 13:07:38 +01:00
|
|
|
<TextView
|
|
|
|
style="@android:style/TextAppearance.DeviceDefault.Large"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/contribute_code"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_marginBottom="8dp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/dandelion_is_developed_as_foss__appspecific"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/fragment_about__contribute_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/get_the_source"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
|
|
|
|
<!-- Translate -->
|
|
|
|
<android.support.v7.widget.CardView
|
2016-08-24 22:05:35 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
style="?android:attr/buttonBarStyle"
|
|
|
|
card_view:cardElevation="5dp"
|
|
|
|
card_view:cardCornerRadius="5dp">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin_half"
|
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin_half">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@android:style/TextAppearance.DeviceDefault.Large"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/translate_the_app"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_marginBottom="8dp"/>
|
2016-08-25 00:23:20 +02:00
|
|
|
|
2016-11-08 13:07:38 +01:00
|
|
|
<TextView
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/app_not_available_in_your_lang_translate_with_stringlate"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/fragment_about__translate_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/let_me_translate"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
|
|
|
|
<!-- Give Feedback -->
|
|
|
|
<android.support.v7.widget.CardView
|
2016-08-25 00:23:20 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
style="?android:attr/buttonBarStyle"
|
|
|
|
card_view:cardElevation="5dp"
|
|
|
|
card_view:cardCornerRadius="5dp">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin_half"
|
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin_half">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@android:style/TextAppearance.DeviceDefault.Large"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/give_feedback"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_marginBottom="8dp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/dandelion_still_in_development__appspecific"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/fragment_about__feedback_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/report_bugs"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
2016-08-25 00:23:20 +02:00
|
|
|
|
2016-11-08 13:07:38 +01:00
|
|
|
<!-- Spread the Word -->
|
|
|
|
<android.support.v7.widget.CardView
|
2016-08-25 00:23:20 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
style="?android:attr/buttonBarStyle"
|
|
|
|
card_view:cardElevation="5dp"
|
|
|
|
card_view:cardCornerRadius="5dp">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin_half"
|
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin_half">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@android:style/TextAppearance.DeviceDefault.Large"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/spread_the_word"
|
2016-11-08 13:07:38 +01:00
|
|
|
android:layout_marginBottom="8dp"/>
|
|
|
|
|
|
|
|
<com.github.dfa.diaspora_android.ui.HtmlTextView
|
|
|
|
android:id="@+id/fragment_about__spread_the_word_text"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/tell_your_friends_about_diaspora__appspecific"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/fragment_about__spread_the_word_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:text="@string/share_the_app"/>
|
2016-11-08 13:07:38 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
|
|
|
|
|
2016-08-24 22:05:35 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.NestedScrollView>
|