소스 검색

Fixed unlinked refresh button for the server connection check

David A. Velasco 12 년 전
부모
커밋
3eb602f81a
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      res/layout/account_setup.xml
  2. 1 1
      src/com/owncloud/android/authentication/AuthenticatorActivity.java

+ 1 - 0
res/layout/account_setup.xml

@@ -65,6 +65,7 @@
                 android:layout_height="wrap_content"
                 android:layout_gravity="right|center_vertical"
                 android:src="@drawable/ic_action_refresh_black"
+            	android:onClick="onRefreshClick"
                 android:visibility="invisible" />
         </FrameLayout>
 

+ 1 - 1
src/com/owncloud/android/authentication/AuthenticatorActivity.java

@@ -1006,7 +1006,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
      * @param view      Refresh 'button'
      */
     public void onRefreshClick(View view) {
-        onFocusChange(mRefreshButton, false);
+        onFocusChange(mHostUrlInput, false);
     }