Skip to content

Commit 06034f4

Browse files
disable View Binding for some layouts
1 parent 7bee09b commit 06034f4

14 files changed

+86
-64
lines changed

app/build.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Build Properties
2-
#Sun Mar 08 15:01:56 EDT 2020
2+
#Sun Mar 08 16:16:34 EDT 2020
33
version_minor=1
4-
version_build=25
4+
version_build=26
55
version_patch=1
6-
version_store=51
76
version_major=2
7+
version_store=51

app/src/main/res/layout/access_point_view_compact.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
-->
1919

2020
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21-
android:layout_width="match_parent"
22-
android:layout_height="wrap_content"
23-
android:orientation="horizontal">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:layout_width="match_parent"
23+
android:layout_height="wrap_content"
24+
android:orientation="horizontal"
25+
tools:viewBindingIgnore="true">
2426

2527
<!-- Column 1 -->
2628
<TextView

app/src/main/res/layout/access_point_view_complete.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
-->
1919

2020
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21-
android:layout_width="match_parent"
22-
android:layout_height="wrap_content"
23-
android:orientation="horizontal">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:layout_width="match_parent"
23+
android:layout_height="wrap_content"
24+
android:orientation="horizontal"
25+
tools:viewBindingIgnore="true">
2426

2527
<!-- Column 1 -->
2628
<TextView

app/src/main/res/layout/access_point_view_popup.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@
1818
-->
1919

2020
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21-
xmlns:tools="http://schemas.android.com/tools"
22-
android:layout_width="match_parent"
23-
android:layout_height="wrap_content"
24-
android:orientation="vertical"
25-
android:padding="@dimen/activity_horizontal_margin">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:layout_width="match_parent"
23+
android:layout_height="wrap_content"
24+
android:orientation="vertical"
25+
android:padding="@dimen/activity_horizontal_margin"
26+
tools:viewBindingIgnore="true">
2627

2728
<include layout="@layout/access_point_view_complete"/>
2829

app/src/main/res/layout/channel_rating_header.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
-->
1919

2020
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21-
android:layout_width="match_parent"
22-
android:layout_height="match_parent"
23-
android:orientation="horizontal">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:layout_width="match_parent"
23+
android:layout_height="match_parent"
24+
android:orientation="horizontal"
25+
tools:viewBindingIgnore="true">
2426

2527
<TextView
2628
android:layout_width="match_parent"

app/src/main/res/layout/filter_popup.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818
-->
1919

2020
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
21-
android:layout_width="match_parent"
22-
android:layout_height="wrap_content"
23-
android:orientation="vertical"
24-
android:padding="@dimen/activity_horizontal_margin">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:layout_width="match_parent"
23+
android:layout_height="wrap_content"
24+
android:orientation="vertical"
25+
android:padding="@dimen/activity_horizontal_margin"
26+
tools:viewBindingIgnore="true">
2527

2628
<LinearLayout
2729
android:layout_width="match_parent"

app/src/main/res/layout/filter_security.xml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@
1818
-->
1919

2020
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21-
xmlns:tools="http://schemas.android.com/tools"
22-
android:id="@+id/filterSecurity"
23-
android:layout_width="match_parent"
24-
android:layout_height="wrap_content"
25-
android:layout_marginTop="@dimen/activity_vertical_margin"
26-
android:orientation="vertical"
27-
android:visibility="gone"
28-
tools:visibility="visible">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:id="@+id/filterSecurity"
23+
android:layout_width="match_parent"
24+
android:layout_height="wrap_content"
25+
android:layout_marginTop="@dimen/activity_vertical_margin"
26+
android:orientation="vertical"
27+
android:visibility="gone"
28+
tools:viewBindingIgnore="true"
29+
tools:visibility="visible">
2930

3031
<TextView
3132
android:layout_width="match_parent"

app/src/main/res/layout/filter_ssid.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@
1818
-->
1919

2020
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21-
android:id="@+id/filterSSID"
22-
android:layout_width="match_parent"
23-
android:layout_height="wrap_content"
24-
android:layout_marginTop="@dimen/activity_vertical_margin"
25-
android:orientation="vertical"
26-
android:visibility="visible">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:id="@+id/filterSSID"
23+
android:layout_width="match_parent"
24+
android:layout_height="wrap_content"
25+
android:layout_marginTop="@dimen/activity_vertical_margin"
26+
android:orientation="vertical"
27+
android:visibility="visible"
28+
tools:viewBindingIgnore="true">
2729

2830
<TextView
2931
android:layout_width="match_parent"

app/src/main/res/layout/filter_strength.xml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@
1818
-->
1919

2020
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21-
xmlns:tools="http://schemas.android.com/tools"
22-
android:id="@+id/filterStrength"
23-
android:layout_width="match_parent"
24-
android:layout_height="wrap_content"
25-
android:layout_marginTop="@dimen/activity_vertical_margin"
26-
android:orientation="vertical"
27-
android:visibility="gone"
28-
tools:visibility="visible">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:id="@+id/filterStrength"
23+
android:layout_width="match_parent"
24+
android:layout_height="wrap_content"
25+
android:layout_marginTop="@dimen/activity_vertical_margin"
26+
android:orientation="vertical"
27+
android:visibility="gone"
28+
tools:viewBindingIgnore="true"
29+
tools:visibility="visible">
2930

3031
<TextView
3132
android:layout_width="match_parent"

app/src/main/res/layout/filter_wifi_band.xml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@
1818
-->
1919

2020
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21-
xmlns:tools="http://schemas.android.com/tools"
22-
android:id="@+id/filterWiFiBand"
23-
android:layout_width="match_parent"
24-
android:layout_height="wrap_content"
25-
android:layout_marginTop="@dimen/activity_vertical_margin"
26-
android:orientation="vertical"
27-
android:visibility="gone"
28-
tools:visibility="visible">
21+
xmlns:tools="http://schemas.android.com/tools"
22+
android:id="@+id/filterWiFiBand"
23+
android:layout_width="match_parent"
24+
android:layout_height="wrap_content"
25+
android:layout_marginTop="@dimen/activity_vertical_margin"
26+
android:orientation="vertical"
27+
android:visibility="gone"
28+
tools:viewBindingIgnore="true"
29+
tools:visibility="visible">
2930

3031
<TextView
3132
android:layout_width="match_parent"

0 commit comments

Comments
 (0)