aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/activity_response.xml1
-rw-r--r--app/src/main/res/layout/fragment_fragment_image.xml33
-rw-r--r--app/src/main/res/layout/fragment_fragment_thread_list.xml1
-rw-r--r--app/src/main/res/menu/menu_viewer.xml3
-rw-r--r--app/src/main/res/values/colors.xml4
-rw-r--r--app/src/main/res/values/drawables.xml2
-rw-r--r--app/src/main/res/values/styles.xml14
7 files changed, 46 insertions, 12 deletions
diff --git a/app/src/main/res/layout/activity_response.xml b/app/src/main/res/layout/activity_response.xml
index bfd143e..15d35eb 100644
--- a/app/src/main/res/layout/activity_response.xml
+++ b/app/src/main/res/layout/activity_response.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
- xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
diff --git a/app/src/main/res/layout/fragment_fragment_image.xml b/app/src/main/res/layout/fragment_fragment_image.xml
index 093508a..5d44190 100644
--- a/app/src/main/res/layout/fragment_fragment_image.xml
+++ b/app/src/main/res/layout/fragment_fragment_image.xml
@@ -1,8 +1,34 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout 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"
- tools:context="layout.FragmentImage">
+ tools:context="layout.FragmentImage"
+ android:orientation="vertical">
+
+ <RelativeLayout
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:id="@+id/layoutOpenBrowser">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:text="No se puede visualizar este archivo."
+ android:layout_centerVertical="true"
+ android:layout_centerHorizontal="true"
+ android:id="@+id/textView2"
+ android:textColor="#ff0000" />
+
+ <Button
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Abrir en el navegador"
+ android:id="@+id/btnLaunchBrowser"
+ android:layout_below="@+id/textView2"
+ android:layout_centerHorizontal="true" />
+ </RelativeLayout>
<com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
android:id="@+id/imageView"
@@ -12,4 +38,5 @@
android:id="@+id/gifView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
-</FrameLayout>
+
+</LinearLayout>
diff --git a/app/src/main/res/layout/fragment_fragment_thread_list.xml b/app/src/main/res/layout/fragment_fragment_thread_list.xml
index af88df4..477c236 100644
--- a/app/src/main/res/layout/fragment_fragment_thread_list.xml
+++ b/app/src/main/res/layout/fragment_fragment_thread_list.xml
@@ -1,5 +1,4 @@
<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="match_parent"
android:layout_alignParentTop="true"
diff --git a/app/src/main/res/menu/menu_viewer.xml b/app/src/main/res/menu/menu_viewer.xml
index 31069eb..bb4352b 100644
--- a/app/src/main/res/menu/menu_viewer.xml
+++ b/app/src/main/res/menu/menu_viewer.xml
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<menu xmlns:tools="http://schemas.android.com/tools"
- xmlns:android="http://schemas.android.com/apk/res/android"
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:title="Guardar"
android:id="@+id/menu_save_img"
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index 5806545..8274b32 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -14,8 +14,8 @@
<color name="nightMarginColor">#58636c</color> <!-- 3 58636c-->
<color name="nightTextColor">#979ea3</color> <!-- 6 -->
<color name="nightLinkColor">#c0c4c8</color> <!-- 8 -->
- <color name="nightNameColor">#2e5f96</color>
- <color name="nightSageColor">#5f962e</color>
+ <color name="nightNameColor">#5f962e</color>
+ <color name="nightSageColor">#2e5f96</color>
<color name="nightTripcodeColor">#962e5f</color>
<color name="headlineBackground">#DDDDDD</color> <!-- 1 -->
diff --git a/app/src/main/res/values/drawables.xml b/app/src/main/res/values/drawables.xml
index 52c6a6c..9036d27 100644
--- a/app/src/main/res/values/drawables.xml
+++ b/app/src/main/res/values/drawables.xml
@@ -1,4 +1,4 @@
-<resources xmlns:android="http://schemas.android.com/apk/res/android">
+<resources>
<item name="ic_menu_camera" type="drawable">@android:drawable/ic_menu_camera</item>
<item name="ic_menu_gallery" type="drawable">@android:drawable/ic_menu_gallery</item>
<item name="ic_menu_slideshow" type="drawable">@android:drawable/ic_menu_slideshow</item>
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
index 5cadb6e..4d0766f 100644
--- a/app/src/main/res/values/styles.xml
+++ b/app/src/main/res/values/styles.xml
@@ -31,7 +31,12 @@
<item name="isDarkTheme">true</item>
</style>
- <style name="AppTheme.HeadLine.Activity" parent="AppTheme.NoActionBar">
+ <style name="AppTheme.HeadLineActionBar.NoActionBar" parent="AppTheme.HeadLineActionBar">
+ <item name="windowActionBar">false</item>
+ <item name="windowNoTitle">true</item>
+ </style>
+
+ <style name="AppTheme.HeadLineActionBar">
<item name="colorPrimary">@color/headlineTextColor</item>
<item name="colorPrimaryDark">@color/blackBackground</item>
<item name="colorAccent">@color/headlineLinkColor</item>
@@ -53,7 +58,12 @@
<item name="isDarkTheme">false</item>
</style>
- <style name="AppTheme.Black.Activity" parent="AppTheme.NoActionBar">
+ <style name="AppTheme.BlackActionBar.NoActionBar" parent="AppTheme.BlackActionBar">
+ <item name="windowActionBar">false</item>
+ <item name="windowNoTitle">true</item>
+ </style>
+
+ <style name="AppTheme.BlackActionBar">
<item name="colorPrimary">@color/blackBackground</item>
<item name="colorPrimaryDark">@color/blackMarginColor</item>
<item name="colorAccent">@color/blackMarginColor</item>