Android: Change the file browser dialog ok button title

I hope this will make it more clear to users that they are suppose to
select the dircetory that has the games.
This commit is contained in:
mahdihijazi 2018-10-27 15:19:30 +02:00
parent d0c29f8814
commit cc4d998118
2 changed files with 29 additions and 0 deletions

View File

@ -1,8 +1,16 @@
package org.dolphinemu.dolphinemu.fragments;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v4.content.FileProvider;
import android.util.TypedValue;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import org.dolphinemu.dolphinemu.R;
import com.nononsenseapps.filepicker.FilePickerFragment;
@ -19,4 +27,23 @@ public class CustomFilePickerFragment extends FilePickerFragment
getContext().getApplicationContext().getPackageName() + ".filesprovider",
file);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
View view = super.onCreateView(inflater, container, savedInstanceState);
if (view == null)
return null;
TextView ok = view.findViewById(R.id.nnf_button_ok);
TextView cancel = view.findViewById(R.id.nnf_button_cancel);
ok.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14);
cancel.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14);
ok.setAllCaps(false);
cancel.setAllCaps(false);
ok.setText(R.string.select_dir);
return view;
}
}

View File

@ -299,4 +299,6 @@
<!-- Extra Leanback Homescreen Channels-->
<string name="homescreen_favorites">Favorites</string>
<string name="select_dir">Select This Directory</string>
</resources>