Skip to content
This repository has been archived by the owner on Feb 14, 2019. It is now read-only.

Commit

Permalink
UI for step disconnecting from softAP
Browse files Browse the repository at this point in the history
  • Loading branch information
CityVibes committed Mar 11, 2017
1 parent e9bff45 commit 3db0107
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.4.2
=====
* UI for step disconnecting from softAP

0.4.1
=====
* Device naming at the end of setup
Expand Down
2 changes: 1 addition & 1 deletion devicesetup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'me.tatarka.retrolambda'

// This is the library version used when deploying the artifact
version = '0.4.1'
version = '0.4.2'

ext {
bintrayRepo = 'android'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ private List<SetupStep> buildSteps() {
StepConfig.newBuilder()
.setMaxAttempts(MAX_RETRIES_DISCONNECT_FROM_DEVICE)
.setResultCode(SuccessActivity.RESULT_FAILURE_NO_DISCONNECT)
.setStepId(R.id.connect_to_wifi_network)
.setStepId(R.id.reconnect_to_wifi_network)
.build(),
deviceSoftApSsid, this);

Expand Down
37 changes: 37 additions & 0 deletions devicesetup/src/main/res/layout/activity_connecting.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,43 @@

</LinearLayout>

<LinearLayout
android:id="@+id/reconnect_to_wifi_network"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="horizontal"
android:visibility="invisible">

<ProgressBar
android:id="@+id/spinner"
style="@style/SparkSpinner"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="left|center_vertical"
android:layout_margin="0dp"
android:visibility="visible"
tools:ignore="DuplicateIds,RtlHardcoded"/>

<ImageView
android:id="@+id/checkbox"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="left|center_vertical"
android:contentDescription="@null"
android:src="@drawable/checkmark"
android:visibility="gone"
tools:ignore="DuplicateIds"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:layout_marginLeft="8dp"
android:text="@string/reconnect_to_wifi_network"
android:textSize="@dimen/text_size_small"/>

</LinearLayout>

<LinearLayout
android:id="@+id/wait_for_device_cloud_connection"
Expand Down
1 change: 1 addition & 0 deletions devicesetup/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
<string name="no_wifi_networks_found">(No Wi-Fi networks found)</string>
<string name="check_for_internet_connectivity">Checking for internet connectivity</string>
<string name="connect_to_wifi_network">Connecting to Wi-Fi network</string>
<string name="reconnect_to_wifi_network">Disconnecting from softAP</string>
<string name="configure_device_wifi_credentials">Configuring device Wi-Fi credentials</string>
<string name="wait_for_device_cloud_connection">Waiting for device cloud connection</string>
<string name="verify_product_ownership">Verifying product ownership</string>
Expand Down

0 comments on commit 3db0107

Please sign in to comment.