mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-31 02:44:53 +01:00
Fixed white on white text
This commit is contained in:
parent
d7cfa07c44
commit
00138515cc
@ -41,12 +41,8 @@ public class DownloadAuthenticationActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
setTheme(UserPreferences.getTheme());
|
setTheme(UserPreferences.getNoTitleTheme());
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
ActionBar actionBar = getSupportActionBar();
|
|
||||||
if (actionBar != null) {
|
|
||||||
actionBar.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
setContentView(R.layout.download_authentication_activity);
|
setContentView(R.layout.download_authentication_activity);
|
||||||
TextView txtvDescription = findViewById(R.id.txtvDescription);
|
TextView txtvDescription = findViewById(R.id.txtvDescription);
|
||||||
|
@ -1,102 +1,70 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="16dp">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/txtvTitle"
|
android:id="@+id/txtvTitle"
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/authentication_notification_title"
|
|
||||||
android:layout_alignParentTop="true"
|
|
||||||
android:textSize="@dimen/text_size_large"
|
|
||||||
android:layout_margin="16dp"
|
|
||||||
android:textColor="@color/holo_blue_light"
|
|
||||||
android:textStyle="italic"/>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/txtvDescription"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/authentication_notification_msg"
|
|
||||||
android:layout_below="@id/txtvTitle"
|
|
||||||
android:textSize="@dimen/text_size_medium"
|
|
||||||
android:textColor="?android:attr/textColorSecondary"
|
|
||||||
android:layout_margin="16dp"/>
|
|
||||||
|
|
||||||
<EditText
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="16dp"
|
|
||||||
android:id="@+id/etxtUsername"
|
|
||||||
android:hint="@string/username_label"
|
|
||||||
android:layout_below="@id/txtvDescription"
|
|
||||||
android:focusable="true"
|
|
||||||
android:focusableInTouchMode="true"
|
|
||||||
android:cursorVisible="true"/>
|
|
||||||
|
|
||||||
<EditText
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="16dp"
|
|
||||||
android:id="@+id/etxtPassword"
|
|
||||||
android:hint="@string/password_label"
|
|
||||||
android:inputType="textPassword"
|
|
||||||
android:layout_below="@id/etxtUsername"
|
|
||||||
android:focusable="true"
|
|
||||||
android:focusableInTouchMode="true"
|
|
||||||
android:cursorVisible="true"/>
|
|
||||||
|
|
||||||
<RelativeLayout
|
|
||||||
android:id="@+id/footer"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="48dp"
|
|
||||||
android:focusableInTouchMode="true"
|
|
||||||
android:layout_alignParentBottom="true">
|
|
||||||
|
|
||||||
<View
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="1dip"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentTop="true"
|
android:text="@string/authentication_notification_title"
|
||||||
android:background="?android:attr/dividerVertical"/>
|
android:textSize="@dimen/text_size_large"
|
||||||
|
android:textColor="?android:attr/textColorPrimary"/>
|
||||||
|
|
||||||
<View
|
<TextView
|
||||||
android:id="@+id/horizontal_divider"
|
android:id="@+id/txtvDescription"
|
||||||
android:layout_width="1dip"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentTop="true"
|
android:text="@string/authentication_notification_msg"
|
||||||
android:layout_centerHorizontal="true"
|
android:textColor="?android:attr/textColorSecondary"/>
|
||||||
android:layout_marginBottom="4dp"
|
|
||||||
android:layout_marginTop="4dp"
|
<EditText
|
||||||
android:background="?android:attr/dividerVertical"/>
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:id="@+id/etxtUsername"
|
||||||
|
android:hint="@string/username_label"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
|
android:cursorVisible="true"/>
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:id="@+id/etxtPassword"
|
||||||
|
android:hint="@string/password_label"
|
||||||
|
android:inputType="textPassword"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
|
android:cursorVisible="true"/>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="end">
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/butCancel"
|
android:id="@+id/butCancel"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentBottom="true"
|
android:background="?android:attr/selectableItemBackground"
|
||||||
android:layout_alignParentLeft="true"
|
android:textColor="?attr/colorAccent"
|
||||||
android:layout_alignParentStart="true"
|
android:paddingLeft="8dp"
|
||||||
android:layout_alignParentTop="true"
|
android:paddingRight="8dp"
|
||||||
android:layout_toLeftOf="@id/horizontal_divider"
|
android:text="@string/cancel_label"/>
|
||||||
android:layout_toStartOf="@id/horizontal_divider"
|
|
||||||
android:background="?android:attr/selectableItemBackground"
|
|
||||||
android:text="@string/cancel_label"/>
|
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/butConfirm"
|
android:id="@+id/butConfirm"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentBottom="true"
|
android:background="?android:attr/selectableItemBackground"
|
||||||
android:layout_alignParentRight="true"
|
android:textColor="?attr/colorAccent"
|
||||||
android:layout_alignParentEnd="true"
|
android:paddingLeft="8dp"
|
||||||
android:layout_alignParentTop="true"
|
android:paddingRight="8dp"
|
||||||
android:layout_toRightOf="@id/horizontal_divider"
|
android:text="@string/confirm_label"/>
|
||||||
android:layout_toEndOf="@id/horizontal_divider"
|
</LinearLayout>
|
||||||
android:background="?android:attr/selectableItemBackground"
|
|
||||||
android:text="@string/confirm_label"/>
|
|
||||||
</RelativeLayout>
|
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
</RelativeLayout>
|
|
Loading…
x
Reference in New Issue
Block a user