<ScrollView
	xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:tools="http://schemas.android.com/tools"
	android:layout_width="match_parent"
	android:layout_height="match_parent">

	<LinearLayout
		android:id="@+id/page_configure"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:orientation="vertical"
		tools:context="org.pacien.tincapp.activities.ConfigureActivity">

		<TextView
			style="@style/AppTheme.SectionTitle"
			android:text="@string/title_path_info"/>

		<LinearLayout style="@style/AppTheme.List">

			<LinearLayout style="@style/AppTheme.ListBlock">

				<TextView
					style="@style/AppTheme.BlockTitle"
					android:text="@string/title_configuration_directory"/>

				<TextView
					android:id="@+id/text_configuration_directory"
					style="@style/AppTheme.BlockContent"
					android:textIsSelectable="true"/>

			</LinearLayout>

			<LinearLayout style="@style/AppTheme.ListBlock">

				<TextView
					style="@style/AppTheme.BlockTitle"
					android:text="@string/title_log_directory"/>

				<TextView
					android:id="@+id/text_log_directory"
					style="@style/AppTheme.BlockContent"
					android:textIsSelectable="true"/>

			</LinearLayout>

			<LinearLayout style="@style/AppTheme.ListBlock">

				<TextView
					style="@style/AppTheme.BlockTitle"
					android:text="@string/title_tinc_binary"/>

				<TextView
					android:id="@+id/text_tinc_binary"
					style="@style/AppTheme.BlockContent"
					android:textIsSelectable="true"/>

			</LinearLayout>

		</LinearLayout>

		<TextView
			style="@style/AppTheme.SectionTitle"
			android:text="@string/title_tools"/>

		<LinearLayout style="@style/AppTheme.List">

			<LinearLayout
				style="@style/AppTheme.ListBlock.Clickable"
				android:onClick="openGenerateConfDialog">

				<TextView
					style="@style/AppTheme.BlockTitle"
					android:text="@string/action_generate_node_configuration_and_keys"/>

			</LinearLayout>

			<LinearLayout
				style="@style/AppTheme.ListBlock.Clickable"
				android:onClick="openJoinNetworkDialog">

				<TextView
					style="@style/AppTheme.BlockTitle"
					android:text="@string/action_join_network_via_invitation_url"/>

			</LinearLayout>

			<LinearLayout
				style="@style/AppTheme.ListBlock.Clickable"
				android:onClick="openEncryptDecryptPrivateKeyDialog">

				<TextView
					style="@style/AppTheme.BlockTitle"
					android:text="@string/action_encrypt_decrypt_private_keys"/>

			</LinearLayout>

		</LinearLayout>

	</LinearLayout>

</ScrollView>