-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for Android Studio 2.3.x freeze when in Layout Preview. (#215)
Fixes Android Studio 2.3.x freeze when in Layout Preview. Update plugin versions and build tools to the newest ones. Library version update to 4.3.1
- Loading branch information
Showing
27 changed files
with
77 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="dots" /> | ||
app:ms_stepperType="dots" | ||
tools:theme="@style/AppTheme" /> |
4 changes: 3 additions & 1 deletion
4
sample/src/main/res/layout/activity_custom_navigation_buttons.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_showBackButtonOnFirstStep="true" | ||
app:ms_stepperType="dots"/> | ||
app:ms_stepperType="dots" | ||
tools:theme="@style/AppTheme" /> |
4 changes: 3 additions & 1 deletion
4
sample/src/main/res/layout/activity_custom_stepper_layout_theme.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" /> | ||
android:layout_height="match_parent" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="dots"/> | ||
app:ms_stepperType="dots" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="none"/> | ||
app:ms_stepperType="none" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="progress_bar" /> | ||
app:ms_stepperType="progress_bar" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="tabs" /> | ||
app:ms_stepperType="tabs" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="tabs" | ||
app:ms_showErrorState="true" /> | ||
app:ms_showErrorState="true" | ||
tools:theme="@style/AppTheme" /> |
4 changes: 3 additions & 1 deletion
4
sample/src/main/res/layout/activity_disabled_tab_navigation.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="tabs" | ||
app:ms_tabNavigationEnabled="false" /> | ||
app:ms_tabNavigationEnabled="false" | ||
tools:theme="@style/AppTheme" /> |
4 changes: 3 additions & 1 deletion
4
sample/src/main/res/layout/activity_error_custom_color_tabs.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="tabs" | ||
app:ms_showErrorStateEnabled="true" | ||
app:ms_errorColor="@color/colorButton"/> | ||
app:ms_errorColor="@color/colorButton" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="tabs" | ||
app:ms_showErrorStateEnabled="true" /> | ||
app:ms_showErrorStateEnabled="true" | ||
tools:theme="@style/AppTheme" /> |
4 changes: 3 additions & 1 deletion
4
sample/src/main/res/layout/activity_error_with_message_tabs.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="tabs" | ||
app:ms_showErrorStateEnabled="true" | ||
app:ms_showErrorMessageEnabled="true"/> | ||
app:ms_showErrorMessageEnabled="true" | ||
tools:theme="@style/AppTheme" /> |
4 changes: 3 additions & 1 deletion
4
sample/src/main/res/layout/activity_hidden_bottom_navigation.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_showBottomNavigation="false" | ||
app:ms_stepperType="tabs" /> | ||
app:ms_stepperType="tabs" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="tabs" | ||
app:ms_showErrorState="true" | ||
app:ms_showErrorStateOnBack="true"/> | ||
app:ms_showErrorStateOnBack="true" | ||
tools:theme="@style/AppTheme" /> |
4 changes: 3 additions & 1 deletion
4
sample/src/main/res/layout/activity_pass_data_between_steps.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_stepperType="dots" | ||
app:ms_showErrorState="true" /> | ||
app:ms_showErrorState="true" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout 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:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:ms_showBackButtonOnFirstStep="true" | ||
app:ms_stepperType="dots"/> | ||
app:ms_stepperType="dots" | ||
tools:theme="@style/AppTheme" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.stepstone.stepper.StepperLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/stepperLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" /> | ||
android:layout_height="match_parent" | ||
tools:theme="@style/AppTheme" /> |