浏览代码

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);
     }