2017-08-22 18:23:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2018-02-10 00:05:35 +01:00
|
|
|
android:layout_height="wrap_content"
|
2017-08-22 18:23:04 +02:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="128dp"
|
|
|
|
android:paddingTop="12dp"
|
|
|
|
android:id="@+id/llInstanceInformation"
|
|
|
|
>
|
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/instance"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnInstance"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:background="@drawable/btn_bg_transparent"
|
|
|
|
android:gravity="start|center_vertical"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/version"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvVersion"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/title"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvTitle"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/email"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnEmail"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:background="@drawable/btn_bg_transparent"
|
|
|
|
android:gravity="start|center_vertical"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-03-10 01:28:53 +01:00
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/contact"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnContact"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:background="@drawable/btn_bg_transparent"
|
|
|
|
android:gravity="start|center_vertical"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/languages"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvLanguages"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:background="@drawable/btn_bg_transparent"
|
|
|
|
android:gravity="start|center_vertical"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2017-08-22 18:23:04 +02:00
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
2017-09-11 18:40:09 +02:00
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/user_count"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvUserCount"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/toot_count"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvTootCount"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/domain_count"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvDomainCount"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-09-18 02:50:33 +02:00
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/thumbnail_1_6_1_later"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
|
|
|
|
<jp.juggler.subwaytooter.view.MyNetworkImageView
|
|
|
|
android:id="@+id/ivThumbnail"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="120dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2017-09-11 18:40:09 +02:00
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
2017-08-22 18:23:04 +02:00
|
|
|
<TextView
|
|
|
|
style="@style/setting_row_label"
|
|
|
|
android:text="@string/description"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout style="@style/setting_row_form">
|
|
|
|
|
|
|
|
<jp.juggler.subwaytooter.view.MyTextView
|
|
|
|
android:id="@+id/tvDescription"
|
|
|
|
style="@style/setting_horizontal_stretch"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/setting_divider"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|