am 7c9f3348: Merge remote-tracking branch \'goog/ub-now-lunchbox\' into lunchbox-release
* commit '7c9f33481fd3c063495813b2772e198ed696e3ce': Fix issue of extra blank screen after uninstall (issue 12372657) Fix build Changed behaviour of the wallpaper picker. Guard against null default wallpaper Avoid stripping empty screens if the workspace is still loading (issue 12523285) Changed inconsistency when selecting default wallpaper, where it did not go back to home. skip backup if launcher is in a bad state Revert "Disabled the wallpaper when completely in -1 Now space." Updating Read/Write settings permission protectionLevels. (Bug 11372484) Fixed visibility issue of save button in case the url loading failed Import translations. DO NOT MERGE
This commit is contained in:
+3
-3
@@ -25,7 +25,7 @@
|
||||
<permission
|
||||
android:name="com.android.launcher3.permission.PRELOAD_WORKSPACE"
|
||||
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
|
||||
android:protectionLevel="system|signature" />
|
||||
android:protectionLevel="signatureOrSystem" />
|
||||
<permission
|
||||
android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
|
||||
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
|
||||
@@ -47,7 +47,7 @@
|
||||
<permission
|
||||
android:name="com.android.launcher3.permission.WRITE_SETTINGS"
|
||||
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
|
||||
android:protectionLevel="normal"
|
||||
android:protectionLevel="signatureOrSystem"
|
||||
android:label="@string/permlab_write_settings"
|
||||
android:description="@string/permdesc_write_settings"/>
|
||||
|
||||
@@ -106,7 +106,7 @@
|
||||
|
||||
<activity
|
||||
android:name="com.android.launcher3.LauncherWallpaperPickerActivity"
|
||||
android:theme="@style/Theme.WallpaperCropper"
|
||||
android:theme="@style/Theme.WallpaperPicker"
|
||||
android:label="@string/pick_wallpaper"
|
||||
android:icon="@mipmap/ic_launcher_wallpaper"
|
||||
android:finishOnCloseSystemDialogs="true"
|
||||
|
||||
@@ -18,18 +18,15 @@
|
||||
*/
|
||||
-->
|
||||
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
style="?android:actionButtonStyle"
|
||||
<com.android.launcher3.AlphaDisableableButton
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
style="@style/ActionBarSetWallpaperStyle"
|
||||
android:id="@+id/set_wallpaper_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" >
|
||||
<TextView style="?android:actionBarTabTextStyle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="start|center_vertical"
|
||||
android:paddingRight="20dp"
|
||||
android:drawableLeft="@drawable/ic_actionbar_accept"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/wallpaper_instructions" />
|
||||
</FrameLayout>
|
||||
android:layout_height="match_parent"
|
||||
android:paddingRight="20dp"
|
||||
android:drawableLeft="@drawable/ic_actionbar_accept"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="start|center_vertical"
|
||||
android:text="@string/wallpaper_instructions">
|
||||
</com.android.launcher3.AlphaDisableableButton>
|
||||
|
||||
@@ -24,6 +24,12 @@
|
||||
<item name="android:windowActionBarOverlay">true</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.WallpaperPicker" parent="Theme.WallpaperCropper">
|
||||
<item name="android:windowBackground">@android:color/transparent</item>
|
||||
<item name="android:colorBackgroundCacheHint">@null</item>
|
||||
<item name="android:windowShowWallpaper">true</item>
|
||||
</style>
|
||||
|
||||
<style name="WallpaperCropperActionBar" parent="android:style/Widget.Holo.ActionBar">
|
||||
<item name="android:displayOptions">showCustom</item>
|
||||
<item name="android:background">#88000000</item>
|
||||
@@ -31,4 +37,8 @@
|
||||
|
||||
<style name="Theme" parent="@android:style/Theme.Holo.Wallpaper.NoTitleBar">
|
||||
</style>
|
||||
|
||||
<style name="ActionBarSetWallpaperStyle" parent="@android:style/Widget.Holo.ActionButton">
|
||||
<item name="android:textColor">#ffffffff</item>
|
||||
</style>
|
||||
</resources>
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* Copyright (C) 2014 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License
|
||||
*/
|
||||
|
||||
package com.android.launcher3;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.AttributeSet;
|
||||
import android.widget.Button;
|
||||
|
||||
/**
|
||||
* A Button which becomes translucent when it is disabled
|
||||
*/
|
||||
public class AlphaDisableableButton extends Button {
|
||||
public static float DISABLED_ALPHA_VALUE = 0.4f;
|
||||
public AlphaDisableableButton(Context context) {
|
||||
this(context, null);
|
||||
}
|
||||
|
||||
public AlphaDisableableButton(Context context, AttributeSet attrs) {
|
||||
this(context, attrs, 0);
|
||||
}
|
||||
|
||||
public AlphaDisableableButton(Context context, AttributeSet attrs, int defStyleAttr) {
|
||||
super(context, attrs, defStyleAttr);
|
||||
setLayerType(LAYER_TYPE_HARDWARE, null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setEnabled(boolean enabled) {
|
||||
super.setEnabled(enabled);
|
||||
if(enabled) {
|
||||
setAlpha(1.0f);
|
||||
} else {
|
||||
setAlpha(DISABLED_ALPHA_VALUE);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -122,7 +122,7 @@ public class LiveWallpaperListAdapter extends BaseAdapter implements ListAdapter
|
||||
Intent preview = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
|
||||
preview.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT,
|
||||
mInfo.getComponent());
|
||||
a.onLiveWallpaperPickerLaunch();
|
||||
a.onLiveWallpaperPickerLaunch(mInfo);
|
||||
a.startActivityForResultSafely(preview, WallpaperPickerActivity.PICK_LIVE_WALLPAPER);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ public class WallpaperCropActivity extends Activity {
|
||||
|
||||
protected CropView mCropView;
|
||||
protected Uri mUri;
|
||||
private View mSetWallpaperButton;
|
||||
protected View mSetWallpaperButton;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
@@ -117,7 +117,7 @@ public class WallpaperCropActivity extends Activity {
|
||||
// Load image in background
|
||||
final BitmapRegionTileSource.UriBitmapSource bitmapSource =
|
||||
new BitmapRegionTileSource.UriBitmapSource(this, imageUri, 1024);
|
||||
mSetWallpaperButton.setVisibility(View.INVISIBLE);
|
||||
mSetWallpaperButton.setEnabled(false);
|
||||
Runnable onLoad = new Runnable() {
|
||||
public void run() {
|
||||
if (bitmapSource.getLoadingState() != BitmapSource.State.LOADED) {
|
||||
@@ -126,7 +126,7 @@ public class WallpaperCropActivity extends Activity {
|
||||
Toast.LENGTH_LONG).show();
|
||||
finish();
|
||||
} else {
|
||||
mSetWallpaperButton.setVisibility(View.VISIBLE);
|
||||
mSetWallpaperButton.setEnabled(true);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
|
||||
package com.android.launcher3;
|
||||
|
||||
import android.animation.Animator;
|
||||
import android.animation.LayoutTransition;
|
||||
import android.app.ActionBar;
|
||||
import android.app.Activity;
|
||||
@@ -33,7 +32,6 @@ import android.graphics.Bitmap;
|
||||
import android.graphics.BitmapFactory;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.Matrix;
|
||||
import android.graphics.Paint;
|
||||
import android.graphics.Point;
|
||||
import android.graphics.PorterDuff;
|
||||
import android.graphics.Rect;
|
||||
@@ -60,6 +58,7 @@ import android.view.ViewGroup;
|
||||
import android.view.ViewPropertyAnimator;
|
||||
import android.view.ViewTreeObserver;
|
||||
import android.view.ViewTreeObserver.OnGlobalLayoutListener;
|
||||
import android.view.WindowManager;
|
||||
import android.view.animation.AccelerateInterpolator;
|
||||
import android.view.animation.DecelerateInterpolator;
|
||||
import android.widget.BaseAdapter;
|
||||
@@ -88,9 +87,9 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
private static final String SELECTED_INDEX = "SELECTED_INDEX";
|
||||
private static final String OLD_DEFAULT_WALLPAPER_THUMBNAIL_FILENAME = "default_thumb.jpg";
|
||||
private static final String DEFAULT_WALLPAPER_THUMBNAIL_FILENAME = "default_thumb2.jpg";
|
||||
private static final int FLAG_POST_DELAY_MILLIS = 200;
|
||||
|
||||
private View mSelectedTile;
|
||||
private View mSetWallpaperButton;
|
||||
private boolean mIgnoreNextTap;
|
||||
private OnClickListener mThumbnailOnClickListener;
|
||||
|
||||
@@ -105,7 +104,8 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
ArrayList<Uri> mTempWallpaperTiles = new ArrayList<Uri>();
|
||||
private SavedWallpaperImages mSavedImages;
|
||||
private WallpaperInfo mLiveWallpaperInfoOnPickerLaunch;
|
||||
private int mSelectedIndex;
|
||||
private int mSelectedIndex = -1;
|
||||
private WallpaperInfo mLastClickedLiveWallpaperInfo;
|
||||
|
||||
public static abstract class WallpaperTileInfo {
|
||||
protected View mView;
|
||||
@@ -147,13 +147,13 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
onLoad = null;
|
||||
} else {
|
||||
mFirstClick = false;
|
||||
a.mSetWallpaperButton.setVisibility(View.INVISIBLE);
|
||||
a.mSetWallpaperButton.setEnabled(false);
|
||||
onLoad = new Runnable() {
|
||||
public void run() {
|
||||
if (mBitmapSource != null &&
|
||||
mBitmapSource.getLoadingState() == BitmapSource.State.LOADED) {
|
||||
a.selectTile(mView);
|
||||
a.mSetWallpaperButton.setVisibility(View.VISIBLE);
|
||||
a.mSetWallpaperButton.setEnabled(true);
|
||||
} else {
|
||||
ViewGroup parent = (ViewGroup) mView.getParent();
|
||||
if (parent != null) {
|
||||
@@ -220,6 +220,7 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
wallpaperSize.x, wallpaperSize.y, false);
|
||||
v.setScale(wallpaperSize.x / crop.width());
|
||||
v.setTouchEnabled(false);
|
||||
a.setSystemWallpaperVisiblity(false);
|
||||
}
|
||||
@Override
|
||||
public void onSave(WallpaperPickerActivity a) {
|
||||
@@ -248,15 +249,23 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
Drawable defaultWallpaper = WallpaperManager.getInstance(a).getBuiltInDrawable(
|
||||
c.getWidth(), c.getHeight(), false, 0.5f, 0.5f);
|
||||
|
||||
if (defaultWallpaper == null) {
|
||||
Log.w(TAG, "Null default wallpaper encountered.");
|
||||
c.setTileSource(null, null);
|
||||
return;
|
||||
}
|
||||
|
||||
c.setTileSource(
|
||||
new DrawableTileSource(a, defaultWallpaper, DrawableTileSource.MAX_PREVIEW_SIZE), null);
|
||||
c.setScale(1f);
|
||||
c.setTouchEnabled(false);
|
||||
a.setSystemWallpaperVisiblity(false);
|
||||
}
|
||||
@Override
|
||||
public void onSave(WallpaperPickerActivity a) {
|
||||
try {
|
||||
WallpaperManager.getInstance(a).clear();
|
||||
a.setResult(RESULT_OK);
|
||||
} catch (IOException e) {
|
||||
Log.w("Setting wallpaper to default threw exception", e);
|
||||
}
|
||||
@@ -276,11 +285,70 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
mWallpaperStrip.setPadding(0, 0, 0, (int) offset);
|
||||
}
|
||||
|
||||
/**
|
||||
* shows the system wallpaper behind the window and hides the {@link
|
||||
* #mCropView} if visible
|
||||
* @param visible should the system wallpaper be shown
|
||||
*/
|
||||
protected void setSystemWallpaperVisiblity(final boolean visible) {
|
||||
// hide our own wallpaper preview if necessary
|
||||
if(!visible) {
|
||||
mCropView.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
changeWallpaperFlags(visible);
|
||||
}
|
||||
// the change of the flag must be delayed in order to avoid flickering,
|
||||
// a simple post / double post does not suffice here
|
||||
mCropView.postDelayed(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if(!visible) {
|
||||
changeWallpaperFlags(visible);
|
||||
} else {
|
||||
mCropView.setVisibility(View.INVISIBLE);
|
||||
}
|
||||
}
|
||||
}, FLAG_POST_DELAY_MILLIS);
|
||||
}
|
||||
|
||||
private void changeWallpaperFlags(boolean visible) {
|
||||
int desiredWallpaperFlag = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
|
||||
int currentWallpaperFlag = getWindow().getAttributes().flags
|
||||
& WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
|
||||
if (desiredWallpaperFlag != currentWallpaperFlag) {
|
||||
getWindow().setFlags(desiredWallpaperFlag,
|
||||
WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCropViewTileSource(BitmapSource bitmapSource,
|
||||
boolean touchEnabled,
|
||||
boolean moveToLeft,
|
||||
final Runnable postExecute) {
|
||||
// we also want to show our own wallpaper instead of the one in the background
|
||||
Runnable showPostExecuteRunnable = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if(postExecute != null) {
|
||||
postExecute.run();
|
||||
}
|
||||
setSystemWallpaperVisiblity(false);
|
||||
}
|
||||
};
|
||||
super.setCropViewTileSource(bitmapSource,
|
||||
touchEnabled,
|
||||
moveToLeft,
|
||||
showPostExecuteRunnable);
|
||||
}
|
||||
|
||||
// called by onCreate; this is subclassed to overwrite WallpaperCropActivity
|
||||
protected void init() {
|
||||
setContentView(R.layout.wallpaper_picker);
|
||||
|
||||
mCropView = (CropView) findViewById(R.id.cropView);
|
||||
mCropView.setVisibility(View.INVISIBLE);
|
||||
|
||||
mWallpaperStrip = findViewById(R.id.wallpaper_strip);
|
||||
mCropView.setTouchCallback(new CropView.TouchCallback() {
|
||||
ViewPropertyAnimator mAnim;
|
||||
@@ -334,6 +402,7 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
}
|
||||
return;
|
||||
}
|
||||
mSetWallpaperButton.setEnabled(true);
|
||||
WallpaperTileInfo info = (WallpaperTileInfo) v.getTag();
|
||||
if (info.isSelectable() && v.getVisibility() == View.VISIBLE) {
|
||||
selectTile(v);
|
||||
@@ -418,13 +487,15 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
// Add a tile for the default wallpaper
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
|
||||
DefaultWallpaperInfo defaultWallpaperInfo = getDefaultWallpaper();
|
||||
FrameLayout defaultWallpaperTile = (FrameLayout) createImageTileView(
|
||||
getLayoutInflater(), 0, null, mWallpapersView, defaultWallpaperInfo.mThumb);
|
||||
setWallpaperItemPaddingToZero(defaultWallpaperTile);
|
||||
defaultWallpaperTile.setTag(defaultWallpaperInfo);
|
||||
mWallpapersView.addView(defaultWallpaperTile, 0);
|
||||
defaultWallpaperTile.setOnClickListener(mThumbnailOnClickListener);
|
||||
defaultWallpaperInfo.setView(defaultWallpaperTile);
|
||||
if (defaultWallpaperInfo != null) {
|
||||
FrameLayout defaultWallpaperTile = (FrameLayout) createImageTileView(
|
||||
getLayoutInflater(), 0, null, mWallpapersView, defaultWallpaperInfo.mThumb);
|
||||
setWallpaperItemPaddingToZero(defaultWallpaperTile);
|
||||
defaultWallpaperTile.setTag(defaultWallpaperInfo);
|
||||
mWallpapersView.addView(defaultWallpaperTile, 0);
|
||||
defaultWallpaperTile.setOnClickListener(mThumbnailOnClickListener);
|
||||
defaultWallpaperInfo.setView(defaultWallpaperTile);
|
||||
}
|
||||
}
|
||||
|
||||
// Select the first item; wait for a layout pass so that we initialize the dimensions of
|
||||
@@ -437,6 +508,7 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
if (mSelectedIndex >= 0 && mSelectedIndex < mWallpapersView.getChildCount()) {
|
||||
mThumbnailOnClickListener.onClick(
|
||||
mWallpapersView.getChildAt(mSelectedIndex));
|
||||
setSystemWallpaperVisiblity(false);
|
||||
}
|
||||
v.removeOnLayoutChangeListener(this);
|
||||
}
|
||||
@@ -466,6 +538,10 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
if (mSelectedTile != null) {
|
||||
WallpaperTileInfo info = (WallpaperTileInfo) mSelectedTile.getTag();
|
||||
info.onSave(WallpaperPickerActivity.this);
|
||||
} else {
|
||||
// no tile was selected, so we just finish the activity and go back
|
||||
setResult(Activity.RESULT_OK);
|
||||
finish();
|
||||
}
|
||||
}
|
||||
});
|
||||
@@ -516,6 +592,7 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
if (itemId == R.id.menu_delete) {
|
||||
int childCount = mWallpapersView.getChildCount();
|
||||
ArrayList<View> viewsToRemove = new ArrayList<View>();
|
||||
boolean selectedTileRemoved = false;
|
||||
for (int i = 0; i < childCount; i++) {
|
||||
CheckableFrameLayout c =
|
||||
(CheckableFrameLayout) mWallpapersView.getChildAt(i);
|
||||
@@ -523,11 +600,19 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
WallpaperTileInfo info = (WallpaperTileInfo) c.getTag();
|
||||
info.onDelete(WallpaperPickerActivity.this);
|
||||
viewsToRemove.add(c);
|
||||
if (i == mSelectedIndex) {
|
||||
selectedTileRemoved = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
for (View v : viewsToRemove) {
|
||||
mWallpapersView.removeView(v);
|
||||
}
|
||||
if (selectedTileRemoved) {
|
||||
mSelectedIndex = -1;
|
||||
mSelectedTile = null;
|
||||
setSystemWallpaperVisiblity(true);
|
||||
}
|
||||
updateTileIndices();
|
||||
mode.finish(); // Action picked, so close the CAB
|
||||
return true;
|
||||
@@ -544,7 +629,9 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
CheckableFrameLayout c = (CheckableFrameLayout) mWallpapersView.getChildAt(i);
|
||||
c.setChecked(false);
|
||||
}
|
||||
mSelectedTile.setSelected(true);
|
||||
if (mSelectedTile != null) {
|
||||
mSelectedTile.setSelected(true);
|
||||
}
|
||||
mActionMode = null;
|
||||
}
|
||||
};
|
||||
@@ -616,7 +703,7 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
for (Uri uri : uris) {
|
||||
addTemporaryWallpaperTile(uri, true);
|
||||
}
|
||||
mSelectedIndex = savedInstanceState.getInt(SELECTED_INDEX, 0);
|
||||
mSelectedIndex = savedInstanceState.getInt(SELECTED_INDEX, -1);
|
||||
}
|
||||
|
||||
private void populateWallpapersFromAdapter(ViewGroup parent, BaseAdapter adapter,
|
||||
@@ -774,11 +861,15 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
} else if (requestCode == PICK_LIVE_WALLPAPER) {
|
||||
WallpaperManager wm = WallpaperManager.getInstance(this);
|
||||
final WallpaperInfo oldLiveWallpaper = mLiveWallpaperInfoOnPickerLaunch;
|
||||
final WallpaperInfo clickedWallpaper = mLastClickedLiveWallpaperInfo;
|
||||
WallpaperInfo newLiveWallpaper = wm.getWallpaperInfo();
|
||||
// Try to figure out if a live wallpaper was set;
|
||||
if (newLiveWallpaper != null &&
|
||||
(oldLiveWallpaper == null ||
|
||||
!oldLiveWallpaper.getComponent().equals(newLiveWallpaper.getComponent()))) {
|
||||
(oldLiveWallpaper == null
|
||||
|| !oldLiveWallpaper.getComponent()
|
||||
.equals(newLiveWallpaper.getComponent())
|
||||
|| clickedWallpaper.getComponent()
|
||||
.equals(oldLiveWallpaper.getComponent()))) {
|
||||
// Return if a live wallpaper was set
|
||||
setResult(RESULT_OK);
|
||||
finish();
|
||||
@@ -938,7 +1029,8 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
return mSavedImages;
|
||||
}
|
||||
|
||||
public void onLiveWallpaperPickerLaunch() {
|
||||
public void onLiveWallpaperPickerLaunch(WallpaperInfo info) {
|
||||
mLastClickedLiveWallpaperInfo = info;
|
||||
mLiveWallpaperInfoOnPickerLaunch = WallpaperManager.getInstance(this).getWallpaperInfo();
|
||||
}
|
||||
|
||||
|
||||
@@ -112,6 +112,18 @@ public class TiledImageView extends FrameLayout {
|
||||
//setTileSource(new ColoredTiles());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setVisibility(int visibility) {
|
||||
super.setVisibility(visibility);
|
||||
// need to update inner view's visibility because it seems like we're causing it to draw
|
||||
// from {@link #dispatchDraw} or {@link #invalidate} even if we are invisible.
|
||||
if (USE_TEXTURE_VIEW) {
|
||||
mTextureView.setVisibility(visibility);
|
||||
} else {
|
||||
mGLSurfaceView.setVisibility(visibility);
|
||||
}
|
||||
}
|
||||
|
||||
public void destroy() {
|
||||
if (!IS_SUPPORTED) {
|
||||
return;
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Vouer is gesluit"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Vouer hernoem na <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Vouer: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Legstukke"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Muurpapiere"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Instellings"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"አቃፊ ተዘግቷል"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"አቃፊ <xliff:g id="NAME">%1$s</xliff:g> ተብሎ ዳግም ተሰይሟል"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"አቃፊ፦ <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"ፍርግሞች"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"የግድግዳ ወረቀቶች"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"ቅንብሮች"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"تم إغلاق المجلد"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"تمت إعادة تسمية المجلد إلى <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"المجلد: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"الأدوات"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"الخلفيات"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"الإعدادات"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Папката бе затворена"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Папката е преименувана на „<xliff:g id="NAME">%1$s</xliff:g>“"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Папка: „<xliff:g id="NAME">%1$s</xliff:g>“"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Приспособления"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Тапети"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Настройки"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Carpeta tancada"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"S\'ha canviat el nom de la carpeta a <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Carpeta: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Fons de pantalla"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Configuració"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Složka je uzavřena"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Složka přejmenována na <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Složka: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgety"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Tapety"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Nastavení"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Mappen er lukket"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Mappen er omdøbt til <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Mappe: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Baggrunde"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Indstillinger"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Ordner geschlossen"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Ordner umbenannt in <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Ordner: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Hintergründe"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Einstellungen"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Ο φάκελος έκλεισε"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Ο φάκελος μετονομάστηκε σε <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Φάκελος: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Γραφικά στοιχεία"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Ταπετσαρίες"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Ρυθμίσεις"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Folder closed"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Folder renamed to <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Folder: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Wallpapers"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Settings"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Folder closed"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Folder renamed to <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Folder: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Wallpapers"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Settings"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Carpeta cerrada"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"El nombre de la carpeta se cambió a <xliff:g id="NAME">%1$s</xliff:g>."</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Carpeta: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Fondos de pantalla"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Configuración"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Carpeta cerrada"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Se ha cambiado el nombre de la carpeta a <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Carpeta: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Fondos de pantalla"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Ajustes"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Kaust on suletud"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Kausta uus nimi: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Kaust: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Vidinad"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Taustapildid"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Seaded"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"پوشه بسته شد"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"نام پوشه به <xliff:g id="NAME">%1$s</xliff:g> تغییر کرد"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"پوشه: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"ابزارکها"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"کاغذدیواریها"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"تنظیمات"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Kansio on suljettu"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Kansion nimeksi vaihdettiin <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Kansio: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgetit"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Taustakuvat"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Asetukset"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Dossier fermé"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Nouveau nom du dossier : <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Dossier : <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Fonds d\'écran"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Paramètres"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Dossier fermé"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Nouveau nom du dossier : <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Dossier \"<xliff:g id="NAME">%1$s</xliff:g>\""</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Fonds d\'écran"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Paramètres"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"फ़ोल्डर बंद किया गया"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"फ़ोल्डर का नाम बदलकर <xliff:g id="NAME">%1$s</xliff:g> किया गया"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"फ़ोल्डर: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"विजेट"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"वॉलपेपर"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"सेटिंग"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Mapa je zatvorena"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Mapa je preimenovana u <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Mapa: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgeti"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Pozadinske slike"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Postavke"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Mappa lezárva"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"A mappa új neve: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Mappa: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Modulok"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Háttérképek"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Beállítások"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Թղթապանակը փակ է"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Թղթապանակը վերանվանվեց <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Թղթապանակ՝ <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Վիջեթներ"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Պաստառներ"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Կարգավորումներ"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Folder ditutup"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Folder diganti namanya menjadi <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Folder: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widget"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Wallpaper"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Setelan"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Cartella chiusa"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Nome della cartella sostituito con <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Cartella: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widget"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Sfondi"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Impostazioni"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"התיקיה נסגרה"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"שם התיקיה שונה ל-<xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"תיקיה: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"רכיבי ווידג\'ט"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"טפטים"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"הגדרות"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"フォルダは閉じています"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"フォルダの名前を「<xliff:g id="NAME">%1$s</xliff:g>」に変更しました"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"フォルダ: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"ウィジェット"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"壁紙"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"設定"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"საქაღალდე დაიხურა"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"საქაღალდეს შეეცვალა სახელი „<xliff:g id="NAME">%1$s</xliff:g>“-ად"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"საქაღალდე: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"ვიჯეტები"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"ფონები"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"პარამეტრები"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"បានបិទថត"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"បានប្ដូរឈ្មោះថតជា <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"ថត៖ <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"ធាតុក្រាហ្វិក"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"ផ្ទាំងរូបភាព"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"ការកំណត់"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"폴더 닫음"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"폴더 이름 변경: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"폴더: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"위젯"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"배경화면"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"설정"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"ປິດໂຟນເດີແລ້ວ"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"ປ່ຽນຊື່ໂຟນເດີເປັນ <xliff:g id="NAME">%1$s</xliff:g> ແລ້ວ"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"ໂຟນເດີ: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"ວິດເຈັດ"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"ພາບພື້ນຫຼັງ"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"ການຕັ້ງຄ່າ"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Aplankas uždarytas"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Aplankas pervardytas kaip „<xliff:g id="NAME">%1$s</xliff:g>“"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Aplankas: „<xliff:g id="NAME">%1$s</xliff:g>“"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Valdikliai"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Ekrano fonai"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Nustatymai"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Mape aizvērta"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Mape pārdēvēta par: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Mape: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Logrīki"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Fona tapetes"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Iestatījumi"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Фолдер хаагдав"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Фолдерын нэр <xliff:g id="NAME">%1$s</xliff:g> болов"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Фолдер: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Виджет"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Ханын зураг"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Тохиргоо"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Folder ditutup"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Folder dinamakan semula kepada <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Folder: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widget"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Kertas dinding"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Tetapan"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Mappen ble lukket"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Mappen heter nå <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Mappe: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Moduler"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Bakgrunner"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Innstillinger"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Map gesloten"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"De naam van de map is gewijzigd in <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Map: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Achtergronden"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Instellingen"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Folder zamknięty"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Nazwa folderu zmieniona na <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Folder: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widżety"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Tapety"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Ustawienia"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Pasta fechada"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Nome de pasta alterado para <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Pasta: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Imagens de fundo"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Definições"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Pasta fechada"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Pasta renomeada para <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Pasta: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Planos de fundo"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Configurações"</string>
|
||||
|
||||
@@ -186,10 +186,6 @@
|
||||
<skip />
|
||||
<!-- no translation found for folder_name_format (6629239338071103179) -->
|
||||
<skip />
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<!-- no translation found for widget_button_text (2880537293434387943) -->
|
||||
<skip />
|
||||
<!-- no translation found for wallpaper_button_text (8404103075899945851) -->
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Dosar închis"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Dosar redenumit <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Dosar: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgeturi"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Imagini de fundal"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Setări"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Папка закрыта"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Папка переименована в \"<xliff:g id="NAME">%1$s</xliff:g>\""</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Папка: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Виджеты"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Обои"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Настройки"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Priečinok je uzavretý"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Priečinok bol premenovaný na <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Priečinok: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Miniaplikácie"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Tapety"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Nastavenia"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Mapa je zaprta"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Mapa je preimenovana v <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Mapa: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Pripomočki"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Ozadja"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Nastavitve"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Директоријум је затворен"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Директоријум је преименован у <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Директоријум: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Виџети"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Позадине"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Подешавања"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Mappen är stängd"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Mappen har bytt namn till <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Mapp: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgetar"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Bakgrunder"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Inställningar"</string>
|
||||
|
||||
@@ -106,10 +106,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Folda imefungwa"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Folda imebadilishwa jina kuwa <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Folda: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Wijeti"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Mandhari"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Mipangilio"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"โฟลเดอร์ปิดอยู่"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"เปลี่ยนชื่อโฟลเดอร์เป็น <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"โฟลเดอร์: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"วิดเจ็ต"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"วอลเปเปอร์"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"การตั้งค่า"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Nakasara ang folder"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Pinalitan ang pangalan ng folder ng <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Folder: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Mga Widget"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Mga Wallpaper"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Mga Setting"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Klasör kapatıldı"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Klasörün adı <xliff:g id="NAME">%1$s</xliff:g> olarak değiştirildi"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Klasör: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widget\'lar"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Duvar Kağıtları"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Ayarlar"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Папку закрито"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Папку перейменовано на <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Папка <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Віджети"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Фонові малюнки"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Налаштування"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Đã đóng thư mục"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Đã đổi tên thư mục thành <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Thư mục: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Tiện ích con"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Hình nền"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Cài đặt"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"文件夹已关闭"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"已将文件夹重命名为“<xliff:g id="NAME">%1$s</xliff:g>”"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"文件夹:<xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"小部件"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"壁纸"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"设置"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"已關閉資料夾"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"資料夾已重新命名為「<xliff:g id="NAME">%1$s</xliff:g>」"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"資料夾:<xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"小工具"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"桌布"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"設定"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"資料夾已關閉"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"已將資料夾重新命名為「<xliff:g id="NAME">%1$s</xliff:g>」"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"資料夾:<xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"小工具"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"桌布"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"設定"</string>
|
||||
|
||||
@@ -104,10 +104,6 @@
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Ifolda ivaliwe"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Ifolda iqanjwe kabusha ngo-<xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Ifolda: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="custom_workspace_cling_title_1" msgid="3750880082935033085"></string>
|
||||
<string name="custom_workspace_cling_description_1" msgid="939966842147696724"></string>
|
||||
<string name="custom_workspace_cling_title_2" msgid="662588444436552198"></string>
|
||||
<string name="custom_workspace_cling_description_2" msgid="8097921091798539310"></string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Amawijethi"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Izithombe zangemuva"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Izilungiselelo"</string>
|
||||
|
||||
@@ -828,6 +828,7 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
|
||||
}
|
||||
});
|
||||
} else {
|
||||
mLauncher.getWorkspace().removeExtraEmptyScreen(true, null);
|
||||
mLauncher.unlockScreenOrientation(false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2078,6 +2078,10 @@ public class Launcher extends Activity
|
||||
return mWorkspaceLoading || mWaitingForResult;
|
||||
}
|
||||
|
||||
public boolean isWorkspaceLoading() {
|
||||
return mWorkspaceLoading;
|
||||
}
|
||||
|
||||
private void resetAddInfo() {
|
||||
mPendingAddInfo.container = ItemInfo.NO_ID;
|
||||
mPendingAddInfo.screenId = -1;
|
||||
@@ -2887,7 +2891,7 @@ public class Launcher extends Activity
|
||||
mWorkspaceBackgroundDrawable : null);
|
||||
}
|
||||
|
||||
protected void changeWallpaperVisiblity(boolean visible) {
|
||||
void updateWallpaperVisibility(boolean visible) {
|
||||
int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
|
||||
int curflags = getWindow().getAttributes().flags
|
||||
& WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
|
||||
@@ -3771,6 +3775,8 @@ public class Launcher extends Activity
|
||||
* Implementation of the method from LauncherModel.Callbacks.
|
||||
*/
|
||||
public void startBinding() {
|
||||
mWorkspaceLoading = true;
|
||||
|
||||
// If we're starting binding all over again, clear any bind calls we'd postponed in
|
||||
// the past (see waitUntilResume) -- we don't need them since we're starting binding
|
||||
// from scratch again
|
||||
|
||||
@@ -50,9 +50,7 @@ import android.util.Base64;
|
||||
import android.util.Log;
|
||||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.net.URISyntaxException;
|
||||
@@ -188,16 +186,20 @@ public class LauncherBackupHelper implements BackupHelper {
|
||||
Log.v(TAG, "lastBackupTime = " + lastBackupTime);
|
||||
|
||||
ArrayList<Key> keys = new ArrayList<Key>();
|
||||
try {
|
||||
backupFavorites(in, data, out, keys);
|
||||
backupScreens(in, data, out, keys);
|
||||
backupIcons(in, data, out, keys);
|
||||
backupWidgets(in, data, out, keys);
|
||||
} catch (IOException e) {
|
||||
Log.e(TAG, "launcher backup has failed", e);
|
||||
if (launcherIsReady()) {
|
||||
try {
|
||||
backupFavorites(in, data, out, keys);
|
||||
backupScreens(in, data, out, keys);
|
||||
backupIcons(in, data, out, keys);
|
||||
backupWidgets(in, data, out, keys);
|
||||
} catch (IOException e) {
|
||||
Log.e(TAG, "launcher backup has failed", e);
|
||||
}
|
||||
out.key = keys.toArray(new BackupProtos.Key[keys.size()]);
|
||||
} else {
|
||||
out = in;
|
||||
}
|
||||
|
||||
out.key = keys.toArray(new BackupProtos.Key[keys.size()]);
|
||||
writeJournal(newState, out);
|
||||
Log.v(TAG, "onBackup: wrote " + out.bytes + "b in " + out.rows + " rows.");
|
||||
}
|
||||
@@ -1129,6 +1131,26 @@ public class LauncherBackupHelper implements BackupHelper {
|
||||
return mIconCache != null;
|
||||
}
|
||||
|
||||
|
||||
// check if the launcher is in a state to support backup
|
||||
private boolean launcherIsReady() {
|
||||
ContentResolver cr = mContext.getContentResolver();
|
||||
Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION, null, null, null);
|
||||
if (cursor == null) {
|
||||
// launcher data has been wiped, do nothing
|
||||
return false;
|
||||
}
|
||||
cursor.close();
|
||||
|
||||
if (!initializeIconCache()) {
|
||||
// launcher services are unavailable, try again later
|
||||
dataChanged();
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private class KeyParsingException extends Throwable {
|
||||
private KeyParsingException(Throwable cause) {
|
||||
super(cause);
|
||||
|
||||
@@ -863,6 +863,12 @@ public class Workspace extends SmoothPagedView
|
||||
// Log to disk
|
||||
Launcher.addDumpLog(TAG, "11683562 - stripEmptyScreens()", true);
|
||||
|
||||
if (mLauncher.isWorkspaceLoading()) {
|
||||
// Don't strip empty screens if the workspace is still loading
|
||||
Launcher.addDumpLog(TAG, " - workspace loading, skip", true);
|
||||
return;
|
||||
}
|
||||
|
||||
if (isPageMoving()) {
|
||||
mStripScreensOnPageStopMoving = true;
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user