fix the bug SECRETCHAT-832
This commit is contained in:
parent
7b4d77d252
commit
867b71ba6d
|
|
@ -17,6 +17,7 @@ import android.support.annotation.Nullable;
|
|||
import android.support.annotation.StyleRes;
|
||||
import android.support.v4.app.DialogFragment;
|
||||
import android.support.v4.app.LoaderManager;
|
||||
import android.support.v4.content.ContextCompat;
|
||||
import android.support.v4.content.Loader;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
import android.support.v7.util.SortedList;
|
||||
|
|
@ -826,6 +827,7 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
v.setOnLongClickListener(this);
|
||||
icon = v.findViewById(R.id.item_icon);
|
||||
text = (TextView) v.findViewById(android.R.id.text1);
|
||||
text.setTextColor(ContextCompat.getColor(getActivity(), android.R.color.white));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -37,7 +37,8 @@
|
|||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:gravity="center_vertical"
|
||||
android:singleLine="true"
|
||||
android:padding="8dp"
|
||||
android:text="@string/nnf_name"/>
|
||||
android:singleLine="true"
|
||||
android:text="@string/nnf_name"
|
||||
android:textColor="@android:color/white"/>
|
||||
</LinearLayout>
|
||||
|
|
@ -57,7 +57,8 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="48dp"
|
||||
android:layout_weight="1"
|
||||
android:text="@android:string/cancel"/>
|
||||
android:text="@android:string/cancel"
|
||||
android:textColor="@android:color/white"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/nnf_button_ok"
|
||||
|
|
@ -65,7 +66,8 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="48dp"
|
||||
android:layout_weight="1"
|
||||
android:text="@android:string/ok"/>
|
||||
android:text="@android:string/ok"
|
||||
android:textColor="@android:color/white"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
|
@ -81,9 +83,9 @@
|
|||
android:layout_height="48dp"
|
||||
android:layout_weight="1"
|
||||
android:hint="@string/nnf_filename"
|
||||
android:singleLine="true"
|
||||
android:paddingLeft="8dp"
|
||||
android:paddingRight="8dp"/>
|
||||
android:paddingRight="8dp"
|
||||
android:singleLine="true"/>
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/nnf_button_ok_newfile"
|
||||
|
|
|
|||
Loading…
Reference in New Issue