0
0
Fork 0
mirror of https://github.com/YTVanced/VancedMicroG synced 2024-11-14 15:05:06 +00:00

Merge pull request #1 from pvagner/master

Fixed some lint errors
This commit is contained in:
Marvin W 2016-02-07 16:28:25 +01:00
commit 3c0af9772f
3 changed files with 7 additions and 2 deletions

View file

@ -44,9 +44,14 @@ android {
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6 sourceCompatibility JavaVersion.VERSION_1_6
} }
lintOptions {
// TODO: Remove MissingTranslation once we have stable strings and proper translations.
disable 'MissingTranslation'
}
} }
dependencies { dependencies {
compile 'com.android.support:support-v4:23.1.1' compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:appcompat-v7:23.1.1'
} }

View file

@ -136,7 +136,7 @@ public abstract class PreferenceFragment extends Fragment {
@Override @Override
public void onActivityCreated(Bundle savedInstanceState) { public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState); super.onActivityCreated(savedInstanceState);
getListView().setScrollBarStyle(0); getListView().setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
if (mHavePrefs) { if (mHavePrefs) {
bindPreferences(); bindPreferences();
} }