aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout-large
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2015-09-03 16:16:16 -0700
committerKenny Root <kenny@the-b.org>2015-09-03 16:16:19 -0700
commita2bf1b0f128974e8173f3b94058b8f1bc39c5a5f (patch)
treead3a1d41e3e5b795404286a0a450bfb7f9dae30b /app/src/main/res/layout-large
parentb2b1d8436baafb539ec9965150812aa792bc4e84 (diff)
downloadconnectbot-a2bf1b0f128974e8173f3b94058b8f1bc39c5a5f.tar.gz
connectbot-a2bf1b0f128974e8173f3b94058b8f1bc39c5a5f.tar.bz2
connectbot-a2bf1b0f128974e8173f3b94058b8f1bc39c5a5f.zip
Fix tablet specific layout lint errors
Fewer lint errors are needed to bypass the CI's lint error limit, so fix these low-hanging fruit.
Diffstat (limited to 'app/src/main/res/layout-large')
-rw-r--r--app/src/main/res/layout-large/act_console.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/src/main/res/layout-large/act_console.xml b/app/src/main/res/layout-large/act_console.xml
index d0ad41b..6e7ab14 100644
--- a/app/src/main/res/layout-large/act_console.xml
+++ b/app/src/main/res/layout-large/act_console.xml
@@ -21,6 +21,7 @@
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff000000">
@@ -29,7 +30,8 @@
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:theme="@style/Theme.AppCompat.Light.DarkActionBar"/>
+ android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
+ tools:ignore="InconsistentLayout"/>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
@@ -39,7 +41,8 @@
android:textAppearance="?android:attr/textAppearanceMedium"
app:tabMode="scrollable"
app:tabContentStart="60dp"
- app:tabIndicatorColor="@android:color/white"/>
+ app:tabIndicatorColor="@android:color/white"
+ tools:ignore="InconsistentLayout"/>
<TextView
android:id="@android:id/empty"