|
@@ -41,7 +41,8 @@
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:background="@color/login_logo_background_color"
|
|
android:background="@color/login_logo_background_color"
|
|
- android:src="@drawable/logo" />
|
|
|
|
|
|
+ android:src="@drawable/logo"
|
|
|
|
+ android:contentDescription="@string/app_name"/>
|
|
|
|
|
|
<Button
|
|
<Button
|
|
android:id="@+id/centeredRefreshButton"
|
|
android:id="@+id/centeredRefreshButton"
|
|
@@ -51,7 +52,8 @@
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:onClick="onRefreshClick"
|
|
android:onClick="onRefreshClick"
|
|
android:text="@string/auth_check_server"
|
|
android:text="@string/auth_check_server"
|
|
- android:visibility="gone" />
|
|
|
|
|
|
+ android:visibility="gone"
|
|
|
|
+ android:contentDescription="@string/auth_check_server"/>
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
android:id="@+id/instructions_message"
|
|
android:id="@+id/instructions_message"
|
|
@@ -60,7 +62,8 @@
|
|
android:layout_gravity="fill_horizontal"
|
|
android:layout_gravity="fill_horizontal"
|
|
android:text="@string/auth_expired_basic_auth_toast"
|
|
android:text="@string/auth_expired_basic_auth_toast"
|
|
android:visibility="gone"
|
|
android:visibility="gone"
|
|
- android:layout_marginBottom="10dp" />
|
|
|
|
|
|
+ android:layout_marginBottom="10dp"
|
|
|
|
+ android:contentDescription="@string/auth_expired_basic_auth_toast"/>
|
|
|
|
|
|
<FrameLayout
|
|
<FrameLayout
|
|
android:id="@+id/hostUrlFrame"
|
|
android:id="@+id/hostUrlFrame"
|
|
@@ -77,6 +80,7 @@
|
|
android:inputType="textUri"
|
|
android:inputType="textUri"
|
|
android:drawablePadding="5dp"
|
|
android:drawablePadding="5dp"
|
|
android:paddingRight="55dp"
|
|
android:paddingRight="55dp"
|
|
|
|
+ android:contentDescription="@string/auth_host_address"
|
|
>
|
|
>
|
|
<requestFocus />
|
|
<requestFocus />
|
|
</EditText>
|
|
</EditText>
|
|
@@ -92,6 +96,7 @@
|
|
android:onClick="onRefreshClick"
|
|
android:onClick="onRefreshClick"
|
|
android:visibility="gone"
|
|
android:visibility="gone"
|
|
android:background="@android:color/transparent"
|
|
android:background="@android:color/transparent"
|
|
|
|
+ android:contentDescription="@string/auth_refresh_button"
|
|
/>
|
|
/>
|
|
</FrameLayout>
|
|
</FrameLayout>
|
|
|
|
|
|
@@ -103,7 +108,8 @@
|
|
android:drawableLeft="@android:drawable/stat_notify_sync"
|
|
android:drawableLeft="@android:drawable/stat_notify_sync"
|
|
android:drawablePadding="5dp"
|
|
android:drawablePadding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:gravity="center_vertical"
|
|
- android:text="@string/auth_testing_connection" />
|
|
|
|
|
|
+ android:text="@string/auth_testing_connection"
|
|
|
|
+ android:contentDescription="@string/auth_testing_connection"/>
|
|
|
|
|
|
<CheckBox
|
|
<CheckBox
|
|
android:id="@+id/oauth_onOff_check"
|
|
android:id="@+id/oauth_onOff_check"
|
|
@@ -113,6 +119,7 @@
|
|
android:onClick="onCheckClick"
|
|
android:onClick="onCheckClick"
|
|
android:text="@string/oauth_check_onoff"
|
|
android:text="@string/oauth_check_onoff"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
+ android:contentDescription="@string/oauth_check_onoff"
|
|
/>
|
|
/>
|
|
|
|
|
|
<EditText
|
|
<EditText
|
|
@@ -124,7 +131,7 @@
|
|
android:text="@string/oauth2_url_endpoint_auth"
|
|
android:text="@string/oauth2_url_endpoint_auth"
|
|
android:singleLine="true"
|
|
android:singleLine="true"
|
|
android:inputType="textUri"
|
|
android:inputType="textUri"
|
|
- android:visibility="gone" >
|
|
|
|
|
|
+ android:visibility="gone">
|
|
</EditText>
|
|
</EditText>
|
|
|
|
|
|
<EditText
|
|
<EditText
|
|
@@ -136,7 +143,7 @@
|
|
android:text="@string/oauth2_url_endpoint_access"
|
|
android:text="@string/oauth2_url_endpoint_access"
|
|
android:singleLine="true"
|
|
android:singleLine="true"
|
|
android:inputType="textUri"
|
|
android:inputType="textUri"
|
|
- android:visibility="gone" />
|
|
|
|
|
|
+ android:visibility="gone"/>
|
|
|
|
|
|
<EditText
|
|
<EditText
|
|
android:id="@+id/account_username"
|
|
android:id="@+id/account_username"
|
|
@@ -144,7 +151,8 @@
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:ems="10"
|
|
android:hint="@string/auth_username"
|
|
android:hint="@string/auth_username"
|
|
- android:inputType="textNoSuggestions"
|
|
|
|
|
|
+ android:inputType="textNoSuggestions"
|
|
|
|
+ android:contentDescription="@string/auth_username"
|
|
/>
|
|
/>
|
|
|
|
|
|
<EditText
|
|
<EditText
|
|
@@ -154,7 +162,8 @@
|
|
android:drawablePadding="5dp"
|
|
android:drawablePadding="5dp"
|
|
android:ems="10"
|
|
android:ems="10"
|
|
android:hint="@string/auth_password"
|
|
android:hint="@string/auth_password"
|
|
- android:inputType="textPassword"
|
|
|
|
|
|
+ android:inputType="textPassword"
|
|
|
|
+ android:contentDescription="@string/auth_password"
|
|
/>
|
|
/>
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
@@ -165,7 +174,8 @@
|
|
android:drawableLeft="@android:drawable/stat_notify_sync"
|
|
android:drawableLeft="@android:drawable/stat_notify_sync"
|
|
android:drawablePadding="5dp"
|
|
android:drawablePadding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:gravity="center_vertical"
|
|
- android:text="@string/auth_unauthorized" />
|
|
|
|
|
|
+ android:text="@string/auth_unauthorized"
|
|
|
|
+ android:contentDescription="@string/auth_unauthorized"/>
|
|
|
|
|
|
<Button
|
|
<Button
|
|
android:id="@+id/buttonOK"
|
|
android:id="@+id/buttonOK"
|
|
@@ -174,7 +184,8 @@
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_gravity="center_horizontal"
|
|
android:enabled="false"
|
|
android:enabled="false"
|
|
android:onClick="onOkClick"
|
|
android:onClick="onOkClick"
|
|
- android:text="@string/setup_btn_connect" />
|
|
|
|
|
|
+ android:text="@string/setup_btn_connect"
|
|
|
|
+ android:contentDescription="@string/setup_btn_connect"/>
|
|
|
|
|
|
<Button
|
|
<Button
|
|
android:id="@+id/welcome_link"
|
|
android:id="@+id/welcome_link"
|
|
@@ -185,7 +196,8 @@
|
|
android:paddingBottom="5dp"
|
|
android:paddingBottom="5dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingTop="5dp"
|
|
android:text="@string/auth_register"
|
|
android:text="@string/auth_register"
|
|
- android:textColor="#0000FF"/>
|
|
|
|
|
|
+ android:textColor="#0000FF"
|
|
|
|
+ android:contentDescription="@string/auth_register"/>
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|