Snap for 8414339 from c0ee52102b to tm-qpr1-release
Change-Id: Ie1e9feb2bdb13798be2bd2356782864c778c8865
This commit is contained in:
+17
@@ -208,6 +208,8 @@ filegroup {
|
||||
srcs: [
|
||||
"ext_tests/src/**/*.java",
|
||||
"ext_tests/src/**/*.kt",
|
||||
"quickstep/ext_tests/src/**/*.java",
|
||||
"quickstep/ext_tests/src/**/*.kt",
|
||||
],
|
||||
}
|
||||
|
||||
@@ -224,6 +226,21 @@ filegroup {
|
||||
],
|
||||
}
|
||||
|
||||
// Common source files used to build go launcher
|
||||
filegroup {
|
||||
name: "launcher-go-src-no-build-config",
|
||||
srcs: [
|
||||
"src/**/*.java",
|
||||
"src/**/*.kt",
|
||||
"quickstep/src/**/*.java",
|
||||
"quickstep/src/**/*.kt",
|
||||
"go/src/**/*.java",
|
||||
"go/src/**/*.kt",
|
||||
"go/quickstep/src/**/*.java",
|
||||
"go/quickstep/src/**/*.kt",
|
||||
],
|
||||
}
|
||||
|
||||
// Proguard files for Launcher3
|
||||
filegroup {
|
||||
name: "launcher-proguard-rules",
|
||||
|
||||
@@ -39,6 +39,7 @@ peanutbutter@google.com
|
||||
xuqiu@google.com
|
||||
sreyasr@google.com
|
||||
thiruram@google.com
|
||||
brianji@google.com
|
||||
|
||||
per-file FeatureFlags.java, globs = set noparent
|
||||
per-file FeatureFlags.java = sunnygoyal@google.com, winsonc@google.com, zakcohen@google.com, mrcasey@google.com, adamcohen@google.com, hyunyoungs@google.com
|
||||
|
||||
+1
-1
@@ -170,7 +170,7 @@ dependencies {
|
||||
protobuf {
|
||||
// Configure the protoc executable
|
||||
protoc {
|
||||
artifact = "com.google.protobuf:protoc:${protocVersion}"
|
||||
artifact = "com.google.protobuf:protoc:${protocVersion}${PROTO_ARCH_SUFFIX}"
|
||||
}
|
||||
generateProtoTasks {
|
||||
all().each { task ->
|
||||
|
||||
@@ -29,8 +29,10 @@ import android.view.View;
|
||||
import androidx.annotation.Keep;
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import com.android.launcher3.BubbleTextView;
|
||||
import com.android.launcher3.LauncherAppState;
|
||||
import com.android.launcher3.LauncherSettings;
|
||||
import com.android.launcher3.ShortcutAndWidgetContainer;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
@@ -205,6 +207,32 @@ public class DebugTestInformationHandler extends TestInformationHandler {
|
||||
}
|
||||
}
|
||||
|
||||
case TestProtocol.REQUEST_USE_TEST_WORKSPACE_LAYOUT: {
|
||||
useTestWorkspaceLayout(true);
|
||||
return response;
|
||||
}
|
||||
|
||||
case TestProtocol.REQUEST_USE_DEFAULT_WORKSPACE_LAYOUT: {
|
||||
useTestWorkspaceLayout(false);
|
||||
return response;
|
||||
}
|
||||
|
||||
case TestProtocol.REQUEST_HOTSEAT_ICON_NAMES: {
|
||||
return getLauncherUIProperty(Bundle::putStringArrayList, l -> {
|
||||
ShortcutAndWidgetContainer hotseatIconsContainer =
|
||||
l.getHotseat().getShortcutsAndWidgets();
|
||||
ArrayList<String> hotseatIconNames = new ArrayList<>();
|
||||
|
||||
for (int i = 0; i < hotseatIconsContainer.getChildCount(); i++) {
|
||||
// Use unchecked cast to catch changes in hotseat layout
|
||||
BubbleTextView icon = (BubbleTextView) hotseatIconsContainer.getChildAt(i);
|
||||
hotseatIconNames.add((String) icon.getText());
|
||||
}
|
||||
|
||||
return hotseatIconNames;
|
||||
});
|
||||
}
|
||||
|
||||
case TestProtocol.REQUEST_GET_ACTIVITIES_CREATED_COUNT: {
|
||||
response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, sActivitiesCreatedCount);
|
||||
return response;
|
||||
@@ -223,4 +251,15 @@ public class DebugTestInformationHandler extends TestInformationHandler {
|
||||
return super.call(method, arg, extras);
|
||||
}
|
||||
}
|
||||
|
||||
private void useTestWorkspaceLayout(boolean useTestWorkspaceLayout) {
|
||||
final long identity = Binder.clearCallingIdentity();
|
||||
try {
|
||||
LauncherSettings.Settings.call(mContext.getContentResolver(), useTestWorkspaceLayout
|
||||
? LauncherSettings.Settings.METHOD_SET_USE_TEST_WORKSPACE_LAYOUT_FLAG
|
||||
: LauncherSettings.Settings.METHOD_CLEAR_USE_TEST_WORKSPACE_LAYOUT_FLAG);
|
||||
} finally {
|
||||
Binder.restoreCallingIdentity(identity);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,90 +0,0 @@
|
||||
#!/usr/bin/env python2.5
|
||||
|
||||
import cgi
|
||||
import os
|
||||
import shutil
|
||||
import sys
|
||||
import sqlite3
|
||||
|
||||
SCREENS = 5
|
||||
COLUMNS = 4
|
||||
ROWS = 4
|
||||
CELL_SIZE = 110
|
||||
|
||||
DIR = "db_files"
|
||||
AUTO_FILE = "launcher.db"
|
||||
|
||||
APPLICATION_COMPONENTS = [
|
||||
"com.android.calculator2/com.android.calculator2.Calculator",
|
||||
"com.android.providers.downloads.ui/com.android.providers.downloads.ui.DownloadList",
|
||||
"com.android.settings/com.android.settings.Settings",
|
||||
"com.android.mms/com.android.mms.ui.ConversationList",
|
||||
"com.android.contacts/com.android.contacts.activities.PeopleActivity",
|
||||
"com.android.dialer/com.android.dialer.DialtactsActivity"
|
||||
]
|
||||
|
||||
def usage():
|
||||
print "usage: fill_screens.py -- fills up the launcher db"
|
||||
|
||||
|
||||
def make_dir():
|
||||
shutil.rmtree(DIR, True)
|
||||
os.makedirs(DIR)
|
||||
|
||||
def pull_file(fn):
|
||||
print "pull_file: " + fn
|
||||
rv = os.system("adb pull"
|
||||
+ " /data/data/com.android.launcher/databases/launcher.db"
|
||||
+ " " + fn);
|
||||
if rv != 0:
|
||||
print "adb pull failed"
|
||||
sys.exit(1)
|
||||
|
||||
def push_file(fn):
|
||||
print "push_file: " + fn
|
||||
rv = os.system("adb push"
|
||||
+ " " + fn
|
||||
+ " /data/data/com.android.launcher/databases/launcher.db")
|
||||
if rv != 0:
|
||||
print "adb push failed"
|
||||
sys.exit(1)
|
||||
|
||||
def process_file(fn):
|
||||
print "process_file: " + fn
|
||||
conn = sqlite3.connect(fn)
|
||||
c = conn.cursor()
|
||||
c.execute("DELETE FROM favorites")
|
||||
|
||||
intentFormat = "#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10200000;component=%s;end"
|
||||
|
||||
id = 0;
|
||||
for s in range(SCREENS):
|
||||
for x in range(ROWS):
|
||||
for y in range(COLUMNS):
|
||||
id += 1
|
||||
insert = "INSERT into favorites (_id, title, intent, container, screen, cellX, cellY, spanX, spanY, itemType, appWidgetId, iconType) VALUES (%d, '%s', '%s', %d, %d, %d, %d, %d, %d, %d, %d, %d)"
|
||||
insert = insert % (id, "title", "", -100, s, x, y, 1, 1, 2, -1, 0)
|
||||
c.execute(insert)
|
||||
folder_id = id
|
||||
|
||||
for z in range(15):
|
||||
id += 1
|
||||
intent = intentFormat % (APPLICATION_COMPONENTS[id % len(APPLICATION_COMPONENTS)])
|
||||
insert = "INSERT into favorites (_id, title, intent, container, screen, cellX, cellY, spanX, spanY, itemType, appWidgetId, iconType) VALUES (%d, '%s', '%s', %d, %d, %d, %d, %d, %d, %d, %d, %d)"
|
||||
insert = insert % (id, "title", intent, folder_id, 0, 0, 0, 1, 1, 0, -1, 0)
|
||||
c.execute(insert)
|
||||
|
||||
conn.commit()
|
||||
c.close()
|
||||
|
||||
def main(argv):
|
||||
if len(argv) == 1:
|
||||
make_dir()
|
||||
pull_file(AUTO_FILE)
|
||||
process_file(AUTO_FILE)
|
||||
push_file(AUTO_FILE)
|
||||
else:
|
||||
usage()
|
||||
|
||||
if __name__=="__main__":
|
||||
main(sys.argv)
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"مشاركة التطبيق"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"استماع"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"ترجمة Google"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"عدسة Google"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"عدسة"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"حسنًا"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"إلغاء"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"الإعدادات"</string>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"অ্যাপ শেয়ার করুন"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"শুনুন"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"অনুবাদ করুন"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"লেন্স"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Lens"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"বুঝেছি"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"বাতিল করুন"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"সেটিংস"</string>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"ઍપ શેર કરો"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"સાંભળો"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"અનુવાદ કરો"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"લેન્સ"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Lens"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"સમજાઈ ગયું"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"રદ કરો"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"સેટિંગ"</string>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"Қолданбаны бөлісу"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"Тыңдау"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"Аудару"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Объектив"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Lens"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"ТҮСІНІКТІ"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"БАС ТАРТУ"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"ПАРАМЕТРЛЕР"</string>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"ആപ്പ് പങ്കിടുക"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"കേൾക്കുക"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"വിവർത്തനം ചെയ്യുക"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"ലെൻസ്"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Lens"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"മനസ്സിലായി"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"റദ്ദാക്കുക"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"ക്രമീകരണം"</string>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"Аппыг хуваалцах"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"Сонсох"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"Орчуулах"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Дуран"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Lens"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"ОЙЛГОЛОО"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"ЦУЦЛАХ"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"ТОХИРГОО"</string>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"Kongsi Apl"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"Dengar"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"Terjemah"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Kanta"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Lens"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"OK"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"BATAL"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"TETAPAN"</string>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"ஆப்ஸைப் பகிருங்கள்"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"கேளுங்கள்"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"மொழிபெயர்"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"லென்ஸ்"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Lens"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"சரி"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"ரத்துசெய்"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"அமைப்புகள்"</string>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<string name="app_share_drop_target_label" msgid="5804774105974539508">"Yabelana nge-App"</string>
|
||||
<string name="action_listen" msgid="2370304050784689486">"Lalela"</string>
|
||||
<string name="action_translate" msgid="8028378961867277746">"Humusha"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Ilensi"</string>
|
||||
<string name="action_search" msgid="6269564710943755464">"Lens"</string>
|
||||
<string name="dialog_acknowledge" msgid="2804025517675853172">"NGIYITHOLILE"</string>
|
||||
<string name="dialog_cancel" msgid="6464336969134856366">"KHANSELA"</string>
|
||||
<string name="dialog_settings" msgid="6564397136021186148">"AMASETHINGI"</string>
|
||||
|
||||
@@ -121,6 +121,7 @@ message TaskBarContainer {
|
||||
optional int32 cardinality = 2;
|
||||
}
|
||||
|
||||
// Next value 39
|
||||
enum Attribute {
|
||||
UNKNOWN = 0;
|
||||
DEFAULT_LAYOUT = 1; // icon automatically placed in workspace, folder, hotseat
|
||||
@@ -166,11 +167,13 @@ enum Attribute {
|
||||
ALL_APPS_SEARCH_RESULT_ASSISTANT_MEMORY = 31;
|
||||
|
||||
// Suggestion Type provided by AGA
|
||||
ONE_SEARCH_WEB_QUERY = 32;
|
||||
ONE_SEARCH_WEB_TRENDING = 33;
|
||||
ONE_SEARCH_WEB_ENTITY = 34;
|
||||
ONE_SEARCH_WEB_ANSWER = 35;
|
||||
ONE_SEARCH_WEB_PERSONAL = 36;
|
||||
WEB_SEARCH_RESULT_QUERY = 32;
|
||||
WEB_SEARCH_RESULT_TRENDING = 33;
|
||||
WEB_SEARCH_RESULT_ENTITY = 34;
|
||||
WEB_SEARCH_RESULT_ANSWER = 35;
|
||||
WEB_SEARCH_RESULT_PERSONAL = 36;
|
||||
WEB_SEARCH_RESULT_CALCULATOR = 37;
|
||||
WEB_SEARCH_RESULT_URL = 38;
|
||||
|
||||
WIDGETS_BOTTOM_TRAY = 28;
|
||||
WIDGETS_TRAY_PREDICTION = 29;
|
||||
|
||||
+120
@@ -0,0 +1,120 @@
|
||||
/*
|
||||
* Copyright (C) 2022 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.quickstep;
|
||||
|
||||
import static com.android.launcher3.util.Executors.MAIN_EXECUTOR;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.Resources;
|
||||
import android.os.Bundle;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import com.android.launcher3.BaseQuickstepLauncher;
|
||||
import com.android.launcher3.Launcher;
|
||||
import com.android.launcher3.R;
|
||||
import com.android.launcher3.taskbar.LauncherTaskbarUIController;
|
||||
import com.android.launcher3.testing.DebugTestInformationHandler;
|
||||
import com.android.launcher3.testing.TestProtocol;
|
||||
|
||||
import java.util.concurrent.ExecutionException;
|
||||
|
||||
/**
|
||||
* Class to handle requests from tests, including debug ones, to Quickstep Launcher builds.
|
||||
*/
|
||||
public abstract class DebugQuickstepTestInformationHandler extends QuickstepTestInformationHandler {
|
||||
|
||||
private final DebugTestInformationHandler mDebugTestInformationHandler;
|
||||
|
||||
public DebugQuickstepTestInformationHandler(Context context) {
|
||||
super(context);
|
||||
mDebugTestInformationHandler = new DebugTestInformationHandler(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Bundle call(String method, String arg, @Nullable Bundle extras) {
|
||||
Bundle response = new Bundle();
|
||||
switch (method) {
|
||||
case TestProtocol.REQUEST_ENABLE_MANUAL_TASKBAR_STASHING:
|
||||
runOnUIThread(l -> {
|
||||
enableManualTaskbarStashing(l, true);
|
||||
});
|
||||
return response;
|
||||
|
||||
case TestProtocol.REQUEST_DISABLE_MANUAL_TASKBAR_STASHING:
|
||||
runOnUIThread(l -> {
|
||||
enableManualTaskbarStashing(l, false);
|
||||
});
|
||||
return response;
|
||||
|
||||
case TestProtocol.REQUEST_UNSTASH_TASKBAR_IF_STASHED:
|
||||
runOnUIThread(l -> {
|
||||
enableManualTaskbarStashing(l, true);
|
||||
|
||||
BaseQuickstepLauncher quickstepLauncher = (BaseQuickstepLauncher) l;
|
||||
LauncherTaskbarUIController taskbarUIController =
|
||||
quickstepLauncher.getTaskbarUIController();
|
||||
|
||||
// Allow null-pointer to catch illegal states.
|
||||
taskbarUIController.unstashTaskbarIfStashed();
|
||||
|
||||
enableManualTaskbarStashing(l, false);
|
||||
});
|
||||
return response;
|
||||
|
||||
case TestProtocol.REQUEST_STASHED_TASKBAR_HEIGHT: {
|
||||
final Resources resources = mContext.getResources();
|
||||
response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD,
|
||||
resources.getDimensionPixelSize(R.dimen.taskbar_stashed_size));
|
||||
return response;
|
||||
}
|
||||
|
||||
default:
|
||||
response = super.call(method, arg, extras);
|
||||
if (response != null) return response;
|
||||
return mDebugTestInformationHandler.call(method, arg, extras);
|
||||
}
|
||||
}
|
||||
|
||||
private void enableManualTaskbarStashing(Launcher launcher, boolean enable) {
|
||||
BaseQuickstepLauncher quickstepLauncher = (BaseQuickstepLauncher) launcher;
|
||||
LauncherTaskbarUIController taskbarUIController =
|
||||
quickstepLauncher.getTaskbarUIController();
|
||||
|
||||
// Allow null-pointer to catch illegal states.
|
||||
taskbarUIController.enableManualStashingForTests(enable);
|
||||
}
|
||||
|
||||
/**
|
||||
* Runs the given command on the UI thread.
|
||||
*/
|
||||
private static void runOnUIThread(UIThreadCommand command) {
|
||||
try {
|
||||
MAIN_EXECUTOR.submit(() -> {
|
||||
command.execute(Launcher.ACTIVITY_TRACKER.getCreatedActivity());
|
||||
return null;
|
||||
}).get();
|
||||
} catch (ExecutionException | InterruptedException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
|
||||
private interface UIThreadCommand {
|
||||
|
||||
void execute(Launcher launcher);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,5 +16,5 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="?android:attr/dialogCornerRadius"/>
|
||||
<solid android:color="@color/gesture_tutorial_primary_color"/>
|
||||
<solid android:color="?android:attr/colorAccent"/>
|
||||
</shape>
|
||||
@@ -14,7 +14,8 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="28dp"/>
|
||||
<solid android:color="?android:attr/colorBackgroundFloating"/>
|
||||
<solid android:color="?androidprv:attr/colorSurface"/>
|
||||
</shape>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<shape
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="50dp"/>
|
||||
<solid android:color="@color/gesture_tutorial_primary_color"/>
|
||||
<solid android:color="?android:attr/colorAccent"/>
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
@@ -17,5 +17,5 @@
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="50dp"/>
|
||||
<solid android:color="@android:color/transparent"/>
|
||||
<stroke android:width="1dp" android:color="@color/gesture_tutorial_primary_color"/>
|
||||
<stroke android:width="1dp" android:color="?android:attr/colorAccent"/>
|
||||
</shape>
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="@color/gesture_tutorial_primary_color" />
|
||||
<solid android:color="?android:attr/colorAccent" />
|
||||
<size android:width="92dp" android:height="92dp"/>
|
||||
</shape>
|
||||
@@ -85,7 +85,7 @@
|
||||
<path
|
||||
android:name="_R_G_L_0_G_D_0_P_0"
|
||||
android:fillAlpha="0.25"
|
||||
android:fillColor="@color/gesture_tutorial_primary_color"
|
||||
android:fillColor="?android:attr/colorAccent"
|
||||
android:fillType="nonZero"
|
||||
android:pathData=" M12.5 -446 C12.5,-446 12.5,446 12.5,446 C12.5,446 -12.5,446 -12.5,446 C-12.5,446 -12.5,-446 -12.5,-446 C-12.5,-446 12.5,-446 12.5,-446c " />
|
||||
</group>
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
<path
|
||||
android:name="_R_G_L_1_G_D_0_P_0"
|
||||
android:fillAlpha="0.25"
|
||||
android:fillColor="@color/gesture_tutorial_primary_color"
|
||||
android:fillColor="?android:attr/colorAccent"
|
||||
android:fillType="nonZero"
|
||||
android:pathData=" M206 -12.5 C206,-12.5 206,12.5 206,12.5 C206,12.5 -206,12.5 -206,12.5 C-206,12.5 -206,-12.5 -206,-12.5 C-206,-12.5 206,-12.5 206,-12.5c " />
|
||||
</group>
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
<path
|
||||
android:name="_R_G_L_1_G_D_0_P_0"
|
||||
android:fillAlpha="0.25"
|
||||
android:fillColor="@color/gesture_tutorial_primary_color"
|
||||
android:fillColor="?android:attr/colorAccent"
|
||||
android:fillType="nonZero"
|
||||
android:pathData=" M206 -12.5 C206,-12.5 206,12.5 206,12.5 C206,12.5 -206,12.5 -206,12.5 C-206,12.5 -206,-12.5 -206,-12.5 C-206,-12.5 206,-12.5 206,-12.5c " />
|
||||
</group>
|
||||
|
||||
@@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 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.
|
||||
-->
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingTop="26dp"
|
||||
android:paddingBottom="26dp"
|
||||
android:paddingStart="56dp"
|
||||
android:paddingEnd="56dp">
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_1"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_1"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintVertical_chainStyle="spread_inside"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/hotseat_icon_2"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_2"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_2"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_icon_1"
|
||||
app:layout_constraintBottom_toTopOf="@id/hotseat_icon_3"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_3"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_3"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_icon_2"
|
||||
app:layout_constraintBottom_toTopOf="@id/hotseat_icon_4"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_4"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_4"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_icon_3"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -0,0 +1,123 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 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.
|
||||
-->
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingBottom="32dp"
|
||||
android:paddingStart="@dimen/gesture_tutorial_hotseat_padding_start_end"
|
||||
android:paddingEnd="@dimen/gesture_tutorial_hotseat_padding_start_end">
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_search_bar"
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_search_height"
|
||||
|
||||
app:layout_constraintHorizontal_chainStyle="spread_inside"
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_search_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_search_bar"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_1"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_1"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_1"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_search_bar"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_2"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_2"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_2"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_1"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_3"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_3"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_3"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_2"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_4"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_4"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_1"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_3"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_5"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_5"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_4"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_4"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_6"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_6"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_2"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_5"
|
||||
app:layout_constraintEnd_toEndOf="parent"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
style="@style/TextAppearance.GestureTutorial.Feedback.Title"
|
||||
style="@style/TextAppearance.GestureTutorial.Feedback.Title.AllSet"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/allset_title_margin_top"
|
||||
@@ -71,15 +71,13 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/subtitle"
|
||||
style="@style/TextAppearance.GestureTutorial.Feedback.Subtitle"
|
||||
android:layout_width="0dp"
|
||||
style="@style/TextAppearance.GestureTutorial.Feedback.Subtitle.AllSet"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/allset_subtitle_margin_top"
|
||||
app:layout_constraintTop_toBottomOf="@id/title"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintWidth_max="@dimen/allset_subtitle_width_max"
|
||||
android:gravity="start"
|
||||
android:text="@string/allset_description"/>
|
||||
android:gravity="start"/>
|
||||
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:id="@+id/navigation_settings_guideline_bottom"
|
||||
|
||||
@@ -1,12 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 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.
|
||||
-->
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingBottom="32dp"
|
||||
android:paddingStart="170dp"
|
||||
android:paddingEnd="170dp">
|
||||
android:paddingStart="@dimen/gesture_tutorial_hotseat_padding_start_end"
|
||||
android:paddingEnd="@dimen/gesture_tutorial_hotseat_padding_start_end">
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_search_bar"
|
||||
|
||||
@@ -27,10 +27,8 @@
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/gesture_tutorial_fake_hotseat_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_alignParentBottom="true"/>
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_width"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_height"/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
@@ -102,7 +100,7 @@
|
||||
android:background="@drawable/gesture_tutorial_ripple"/>
|
||||
|
||||
<include
|
||||
layout="@layout/gesture_tutorial_foldable_mock_taskbar"
|
||||
layout="@layout/gesture_tutorial_tablet_mock_taskbar"
|
||||
android:id="@+id/gesture_tutorial_fake_taskbar_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/gesture_tutorial_mock_taskbar_height"
|
||||
@@ -121,33 +119,23 @@
|
||||
android:scaleType="fitXY"
|
||||
android:visibility="gone"/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/gesture_tutorial_finger_dot"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/gesture_tutorial_finger_dot"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:visibility="gone"/>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/gesture_tutorial_fragment_feedback_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="24dp"
|
||||
android:paddingTop="24dp"
|
||||
android:paddingBottom="16dp"
|
||||
android:paddingStart="24dp"
|
||||
android:paddingEnd="24dp"
|
||||
android:background="@drawable/bg_sandbox_feedback">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/gesture_tutorial_fragment_feedback_title"
|
||||
style="@style/TextAppearance.GestureTutorial.Feedback.Title"
|
||||
android:layout_width="0dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -158,9 +146,7 @@
|
||||
style="@style/TextAppearance.GestureTutorial.Feedback.Subtitle"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="24dp"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -182,7 +168,6 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="32dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:paddingTop="16dp"
|
||||
android:paddingBottom="16dp"
|
||||
android:paddingStart="26dp"
|
||||
@@ -201,11 +186,8 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="32dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:paddingTop="16dp"
|
||||
android:paddingBottom="16dp"
|
||||
android:paddingStart="26dp"
|
||||
android:paddingEnd="26dp"
|
||||
android:text="@string/gesture_tutorial_action_button_label_skip"
|
||||
android:background="?android:attr/selectableItemBackgroundBorderless"
|
||||
|
||||
@@ -214,4 +196,13 @@
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/gesture_tutorial_finger_dot"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/gesture_tutorial_finger_dot"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:visibility="gone"/>
|
||||
|
||||
</com.android.quickstep.interaction.RootSandboxLayout>
|
||||
@@ -34,8 +34,8 @@
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="43dp"
|
||||
android:layout_marginBottom="22dp"
|
||||
android:layout_marginStart="34dp"
|
||||
android:layout_marginEnd="211dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_top_bar_margin_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_top_bar_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
@@ -84,7 +84,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:background="@color/mock_conversation_background"
|
||||
android:paddingBottom="66dp"
|
||||
android:paddingBottom="@dimen/gesture_tutorial_conversation_bottom_padding"
|
||||
|
||||
app:layout_constraintTop_toBottomOf="@id/top_bar"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
@@ -108,6 +108,7 @@
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_message_large_margin_bottom"
|
||||
android:layout_marginStart="124dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_message_padding_end"
|
||||
android:visibility="@integer/gesture_tutorial_extra_messages_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -122,6 +123,7 @@
|
||||
android:layout_height="@dimen/gesture_tutorial_message_icon_size"
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_message_large_margin_bottom"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_message_padding_start"
|
||||
android:visibility="@integer/gesture_tutorial_extra_messages_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_message_icon_corner_radius"
|
||||
@@ -135,6 +137,7 @@
|
||||
android:layout_height="36dp"
|
||||
android:layout_marginStart="17dp"
|
||||
android:layout_marginEnd="112dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_messages_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -151,6 +154,7 @@
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_message_small_margin_bottom"
|
||||
android:layout_marginStart="280dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_message_padding_end"
|
||||
android:visibility="@integer/gesture_tutorial_extra_messages_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -164,7 +168,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="74dp"
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_message_large_margin_bottom"
|
||||
android:layout_marginStart="124dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_message_margin_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_message_padding_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
@@ -192,7 +196,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="36dp"
|
||||
android:layout_marginStart="17dp"
|
||||
android:layout_marginEnd="144dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_reply_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -206,7 +210,7 @@
|
||||
android:id="@+id/message_4"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="74dp"
|
||||
android:layout_marginStart="124dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_message_margin_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_message_padding_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
android:layout_marginTop="43dp"
|
||||
android:layout_marginBottom="22dp"
|
||||
android:layout_marginStart="34dp"
|
||||
android:layout_marginEnd="35dp"
|
||||
android:layout_marginEnd="34dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
@@ -51,337 +51,336 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:background="@color/mock_list_background"
|
||||
android:paddingBottom="66dp"
|
||||
android:paddingTop="@dimen/gesture_tutorial_conversation_list_padding_top"
|
||||
android:paddingStart="26dp"
|
||||
|
||||
app:layout_constraintTop_toBottomOf="@id/top_bar"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:paddingTop="@dimen/gesture_tutorial_conversation_list_padding_top"
|
||||
android:paddingStart="26dp"
|
||||
android:paddingBottom="14dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_1"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/mock_button">
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_1"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_1"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_conversation_line_1_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_1"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_1"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_2"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_1"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="217dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_2"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_conversation_line_2_margin_end"
|
||||
android:layout_marginTop="4dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_1"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_1"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_2"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_1"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_1"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_1"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_2"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="142dp"
|
||||
android:layout_marginTop="4dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_2"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_1"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_1"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_1"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_1"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_2"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_3"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_conversation_line_3_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_1"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_2"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_2"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_4"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_3"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="190dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_4"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_conversation_line_4_margin_end"
|
||||
android:layout_marginTop="4dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_2"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_2"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_4"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_3"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_2"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_2"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_4"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="171dp"
|
||||
android:layout_marginTop="4dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_3"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_3"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_2"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_2"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_2"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_3"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_5"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_conversation_line_5_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_2"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_3"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_3"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_6"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_5"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="198dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_6"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_conversation_line_6_margin_end"
|
||||
android:layout_marginTop="4dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_3"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_3"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_6"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_5"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_3"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_3"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_6"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="79dp"
|
||||
android:layout_marginTop="4dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_4"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_5"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_3"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_3"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_3"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_4"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_7"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_conversation_line_7_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_3"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_4"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_4"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_8"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_7"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="174dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_8"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_conversation_line_8_margin_end"
|
||||
android:layout_marginTop="4dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_4"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_4"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_8"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_7"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_4"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_4"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_8"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="117dp"
|
||||
android:layout_marginTop="4dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_5"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_7"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_4"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_4"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_4"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_5"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_9"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="244dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_4"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_5"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_5"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_10"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_9"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="244dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_10"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="143dp"
|
||||
android:layout_marginTop="4dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_5"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_5"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_10"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_9"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_5"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_5"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_10"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="143dp"
|
||||
android:layout_marginTop="4dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_6"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_9"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_5"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_5"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_5"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_6"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_11"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="177dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_5"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_6"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_6"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_12"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_11"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="177dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_12"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="117dp"
|
||||
android:layout_marginTop="4dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_6"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_6"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_12"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_11"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_6"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_6"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_12"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="117dp"
|
||||
android:layout_marginTop="4dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_7"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_11"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_6"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_6"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_6"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_7"
|
||||
android:layout_width="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_conversation_icon_size"
|
||||
android:layout_marginTop="32dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_13"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="189dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_conversation_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_list_profile_icon"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_icon_6"
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_7"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_7"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_14"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_13"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="189dp"
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_14"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="166dp"
|
||||
android:layout_marginTop="4dp"
|
||||
android:visibility="@integer/gesture_tutorial_extra_conversations_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintVertical_chainStyle="packed"
|
||||
app:layout_constraintTop_toTopOf="@id/conversation_icon_7"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_7"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/conversation_line_14"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_line_14"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="166dp"
|
||||
android:layout_marginTop="4dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_13"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_7"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_7"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="4dp"
|
||||
app:cardBackgroundColor="@color/mock_list_preview_message"
|
||||
app:layout_constraintTop_toBottomOf="@id/conversation_line_13"
|
||||
app:layout_constraintStart_toEndOf="@id/conversation_icon_7"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_7"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/mock_button"
|
||||
android:layout_width="149dp"
|
||||
android:layout_height="56dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_mock_button_margin_end"
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_mock_button_margin_bottom"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="164dp"
|
||||
|
||||
@@ -34,8 +34,8 @@
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="48dp"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_webpage_url_margin_start_end"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_webpage_url_margin_start_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="100dp"
|
||||
@@ -63,7 +63,7 @@
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="22dp"
|
||||
android:layout_marginBottom="22dp"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_webpage_top_bar_button_margin_start"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="8dp"
|
||||
@@ -78,8 +78,8 @@
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="28dp"
|
||||
android:layout_marginBottom="28dp"
|
||||
android:layout_marginStart="97dp"
|
||||
android:layout_marginEnd="97dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_webpage_top_bar_margin_start"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_webpage_top_bar_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="2dp"
|
||||
@@ -107,7 +107,7 @@
|
||||
android:id="@+id/mock_line_1"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_large_line_height"
|
||||
android:layout_marginEnd="126dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_webpage_line_1_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_small_corner_radius"
|
||||
@@ -121,7 +121,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_large_line_height"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_small_margin_top"
|
||||
android:layout_marginEnd="64dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_webpage_line_2_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_small_corner_radius"
|
||||
@@ -135,7 +135,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_large_line_height"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_small_margin_top"
|
||||
android:layout_marginEnd="151dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_webpage_line_3_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_small_corner_radius"
|
||||
@@ -174,7 +174,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="240dp"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_large_margin_top"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_webpage_block_margin_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_large_corner_radius"
|
||||
@@ -189,6 +189,7 @@
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_small_line_height"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_large_margin_top"
|
||||
android:layout_marginEnd="52dp"
|
||||
android:visibility="@integer/gesture_tutorial_webpage_extra_lines_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_medium_corner_radius"
|
||||
@@ -203,6 +204,7 @@
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_small_line_height"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_small_margin_top"
|
||||
android:layout_marginEnd="41dp"
|
||||
android:visibility="@integer/gesture_tutorial_webpage_extra_lines_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_medium_corner_radius"
|
||||
@@ -217,6 +219,7 @@
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_small_line_height"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_small_margin_top"
|
||||
android:layout_marginEnd="71dp"
|
||||
android:visibility="@integer/gesture_tutorial_webpage_extra_lines_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_medium_corner_radius"
|
||||
@@ -231,6 +234,7 @@
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_small_line_height"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_small_margin_top"
|
||||
android:layout_marginEnd="198dp"
|
||||
android:visibility="@integer/gesture_tutorial_webpage_extra_lines_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_medium_corner_radius"
|
||||
@@ -245,6 +249,7 @@
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_small_line_height"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_large_margin_top"
|
||||
android:layout_marginEnd="64dp"
|
||||
android:visibility="@integer/gesture_tutorial_webpage_extra_lines_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_medium_corner_radius"
|
||||
@@ -258,6 +263,7 @@
|
||||
android:layout_height="@dimen/gesture_tutorial_webpage_small_line_height"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_webpage_small_margin_top"
|
||||
android:layout_marginEnd="71dp"
|
||||
android:visibility="@integer/gesture_tutorial_webpage_extra_lines_visibility"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_webpage_medium_corner_radius"
|
||||
|
||||
+12
-12
@@ -106,8 +106,8 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="112dp"
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_message_large_margin_bottom"
|
||||
android:layout_marginStart="445dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_foldable_message_padding_start_end"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_tablet_message_1_margin"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_message_padding_start_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -121,7 +121,7 @@
|
||||
android:layout_width="@dimen/gesture_tutorial_message_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_message_icon_size"
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_message_large_margin_bottom"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_foldable_message_padding_start_end"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_tablet_message_padding_start_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_message_icon_corner_radius"
|
||||
@@ -134,7 +134,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="36dp"
|
||||
android:layout_marginStart="17dp"
|
||||
android:layout_marginEnd="441dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_reply_1_margin"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -149,8 +149,8 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="36dp"
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_message_small_margin_bottom"
|
||||
android:layout_marginStart="601dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_foldable_message_padding_start_end"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_tablet_message_2_margin"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_message_padding_start_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -164,8 +164,8 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="74dp"
|
||||
android:layout_marginBottom="@dimen/gesture_tutorial_message_large_margin_bottom"
|
||||
android:layout_marginStart="445dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_foldable_message_padding_start_end"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_tablet_message_3_margin"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_message_padding_start_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -179,7 +179,7 @@
|
||||
android:layout_width="@dimen/gesture_tutorial_message_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_message_icon_size"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_foldable_message_padding_start_end"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_tablet_message_padding_start_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_message_icon_corner_radius"
|
||||
@@ -192,7 +192,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="36dp"
|
||||
android:layout_marginStart="17dp"
|
||||
android:layout_marginEnd="473dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_reply_2_margin"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
@@ -206,8 +206,8 @@
|
||||
android:id="@+id/message_4"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="74dp"
|
||||
android:layout_marginStart="445dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_foldable_message_padding_start_end"
|
||||
android:layout_marginStart="345dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_message_padding_start_end"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="18dp"
|
||||
+17
-17
@@ -67,7 +67,7 @@
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/mock_button">
|
||||
app:layout_constraintEnd_toEndOf="parent">
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/conversation_icon_1"
|
||||
@@ -189,7 +189,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="15dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_conversation_line_6_margin_end"
|
||||
android:layout_marginTop="4dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
@@ -233,7 +233,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="72dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_conversation_line_8_margin_end"
|
||||
android:layout_marginTop="4dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
@@ -277,7 +277,7 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginStart="@dimen/gesture_tutorial_conversation_line_padding_start"
|
||||
android:layout_marginEnd="111dp"
|
||||
android:layout_marginEnd="@dimen/gesture_tutorial_tablet_conversation_line_10_margin_end"
|
||||
android:layout_marginTop="4dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
@@ -376,21 +376,21 @@
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="@id/conversation_icon_7"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/mock_button"
|
||||
android:layout_width="149dp"
|
||||
android:layout_height="56dp"
|
||||
android:layout_marginEnd="126dp"
|
||||
android:layout_marginBottom="24dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="164dp"
|
||||
app:cardBackgroundColor="@color/mock_list_button"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/mock_button"
|
||||
android:layout_width="149dp"
|
||||
android:layout_height="56dp"
|
||||
android:layout_marginEnd="126dp"
|
||||
android:layout_marginBottom="24dp"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="164dp"
|
||||
app:cardBackgroundColor="@color/mock_list_button"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -0,0 +1,122 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 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.
|
||||
-->
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingBottom="32dp"
|
||||
android:paddingStart="@dimen/gesture_tutorial_hotseat_padding_start_end"
|
||||
android:paddingEnd="@dimen/gesture_tutorial_hotseat_padding_start_end">
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_search_bar"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_search_height"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_search_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_search_bar"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_1"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_hotseat_icon_search_margin"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_1"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintHorizontal_chainStyle="spread_inside"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_search_bar"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_2"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_2"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_hotseat_icon_search_margin"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_2"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_search_bar"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_1"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_3"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_3"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_hotseat_icon_search_margin"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_3"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_search_bar"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_2"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_4"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_4"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_hotseat_icon_search_margin"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_1"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_search_bar"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_3"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_5"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_5"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_hotseat_icon_search_margin"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_4"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_search_bar"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_4"
|
||||
app:layout_constraintEnd_toStartOf="@id/hotseat_icon_6"/>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/hotseat_icon_6"
|
||||
android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
|
||||
android:layout_marginTop="@dimen/gesture_tutorial_hotseat_icon_search_margin"
|
||||
|
||||
app:cardElevation="0dp"
|
||||
app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
|
||||
app:cardBackgroundColor="@color/mock_app_icon_2"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintTop_toBottomOf="@id/hotseat_search_bar"
|
||||
app:layout_constraintStart_toEndOf="@id/hotseat_icon_5"
|
||||
app:layout_constraintEnd_toEndOf="parent"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -42,6 +42,7 @@
|
||||
android:paddingLeft="@dimen/bottom_sheet_edu_padding"
|
||||
android:paddingRight="@dimen/bottom_sheet_edu_padding"
|
||||
android:text="@string/hotseat_edu_title_migrate"
|
||||
android:fontFamily="google-sans"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@android:color/white"
|
||||
android:textSize="20sp" />
|
||||
|
||||
@@ -51,6 +51,12 @@
|
||||
<include layout="@layout/all_apps_personal_work_tabs" />
|
||||
</com.android.launcher3.allapps.FloatingHeaderView>
|
||||
|
||||
<com.android.launcher3.taskbar.allapps.TaskbarAllAppsFallbackSearchContainer
|
||||
android:id="@+id/search_container_all_apps"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<include layout="@layout/all_apps_fast_scroller" />
|
||||
</com.android.launcher3.taskbar.allapps.TaskbarAllAppsContainerView>
|
||||
</com.android.launcher3.taskbar.allapps.TaskbarAllAppsSlideInView>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Gereed!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Swiep op om na die tuisskerm toe te gaan"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Jy is gereed om jou foon te begin gebruik"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Jy is gereed om jou tablet te begin gebruik"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Stelselnavigasie-instellings"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Deel"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Skermkiekie"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"ሁሉም ዝግጁ!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"ወደ መነሻ ለመሄድ በጣት ወደ ላይ ማንሸራተት"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"ስልክዎን መጠቀም ለመጀመር ዝግጁ ነዎት"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"ጡባዊዎን መጠቀም ለመጀመር ዝግጁ ነዎት"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"የስርዓት አሰሳ ቅንብሮች"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"አጋራ"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"ቅጽበታዊ ገጽ እይታ"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"اكتملت عملية الإعداد"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"مرِّر سريعًا للأعلى للانتقال إلى الشاشة الرئيسية."</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"يمكنك الآن بدء استخدام هاتفك."</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"يمكنك الآن بدء استخدام جهازك اللوحي."</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"إعدادات التنقّل داخل النظام"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"مشاركة"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"لقطة شاشة"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"সকলো সাজু!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"গৃহ স্ক্ৰীনলৈ যাবলৈ ওপৰলৈ ছোৱাইপ কৰক"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"আপুনি আপোনাৰ ফ’নটো ব্যৱহাৰ কৰিবলৈ সাজু"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"আপুনি আপোনাৰ টেবলেটটো ব্যৱহাৰ কৰিবলৈ সাজু"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"ছিষ্টেম নেভিগেশ্বনৰ ছেটিং"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"শ্বেয়াৰ কৰক"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"স্ক্ৰীনশ্বট"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Hər şey hazırdır!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Əsas səhifəyə keçmək üçün yuxarı çəkin"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Telefondan istifadəyə başlamağa hazırsınız"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Planşetdən istifadəyə başlamağa hazırsınız"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Sistem naviqasiya ayarları"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Paylaşın"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Skrinşot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Gotovo!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Prevucite nagore da biste otvorili početni ekran"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Spremni ste da počnete da koristite telefon"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Spremni ste da počnete da koristite tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Podešavanja kretanja kroz sistem"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Deli"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Snimak ekrana"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Гатова!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Каб перайсці на галоўны экран, правядзіце пальцам уверх"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Вы можаце пачаць карыстанне тэлефонам"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Вы можаце пачаць карыстанне планшэтам"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Налады навігацыі ў сістэме"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Абагуліць"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Здымак экрана"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Готово!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Прекарайте пръст нагоре, за да отворите началния екран"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Можете да започнете да използвате телефона си"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Можете да започнете да използвате таблета си"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Настройки за навигиране в системата"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Споделяне"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Екранна снимка"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"সব রেডি!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"হোম স্ক্রিনে যেতে উপরের দিকে সোয়াইপ করুন"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"এবারে আপনি ফোন ব্যবহার করতে পারবেন"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"এবারে আপনি ট্যাবলেট ব্যবহার করতে পারবেন"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"সিস্টেম নেভিগেশন সেটিংস"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"শেয়ার করুন"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"স্ক্রিনশট নিন"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Sve je spremno!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Prevucite prema gore da odete na početnu stranicu"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Sve je spremno da počnete koristiti telefon"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Sve je spremno da počnete koristiti tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Postavke navigiranja sistemom"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Dijeli"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Snimak ekrana"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Tot a punt!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Llisca cap amunt per anar a la pàgina d\'inici"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Ja pots començar a utilitzar el telèfon"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Ja pots començar a utilitzar la tauleta"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Configuració de navegació del sistema"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Comparteix"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Captura de pantalla"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Hotovo!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Přejetím nahoru se vrátíte na plochu"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Jste připraveni začít používat telefon"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Jste připraveni začít používat tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Nastavení navigace v systému"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Sdílet"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Snímek obrazovky"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Alt er parat!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Stryg opad for at gå til startsiden"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Du er klar til at bruge din telefon"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Du er klar til at bruge din tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Indstillinger for systemnavigation"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Del"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Fertig!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Nach oben wischen, um den Startbildschirm aufzurufen"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Du kannst dein Smartphone jetzt verwenden"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Du kannst dein Tablet jetzt verwenden"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Einstellungen der Systemsteuerung"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Teilen"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Όλα έτοιμα!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Σύρετε προς τα πάνω για μετάβαση στην αρχική οθόνη."</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Είστε έτοιμοι να ξεκινήσετε να χρησιμοποιείτε το τηλέφωνό σας"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Είστε έτοιμοι να ξεκινήσετε να χρησιμοποιείτε το tablet."</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Ρυθμίσεις πλοήγησης συστήματος"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Κοινοποίηση"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Στιγμιότυπο οθόνης"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Ready!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Swipe up to go home"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"You’re ready to start using your phone"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"You’re ready to start using your tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"System navigation settings"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Share"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Ready!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Swipe up to go home"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"You’re ready to start using your phone"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"You’re ready to start using your tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"System navigation settings"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Share"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Ready!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Swipe up to go home"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"You’re ready to start using your phone"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"You’re ready to start using your tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"System navigation settings"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Share"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Ready!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Swipe up to go home"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"You’re ready to start using your phone"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"You’re ready to start using your tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"System navigation settings"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Share"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"All set!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Swipe up to go Home"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"You’re ready to start using your phone"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"You’re ready to start using your tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027">""<annotation id="link">"System navigation settings"</annotation>""</string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Share"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Todo listo"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Desliza el dedo hacia arriba para ir a la pantalla principal"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Ya puedes empezar a usar tu teléfono"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Ya puedes empezar a usar tu tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Configuración de navegación del sistema"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Compartir"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Captura de pantalla"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"¡Ya está!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Desliza el dedo hacia arriba para ir a la pantalla de inicio"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Ya puedes empezar a usar tu teléfono"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Ya puedes empezar a usar tu tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Ajustes de navegación del sistema"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Compartir"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Hacer captura"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Valmis!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Avakuvale liikumiseks pühkige üles"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Olete valmis oma telefoni kasutama."</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Olete valmis oma tahvelarvutit kasutama"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Süsteemi navigeerimisseaded"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Jaga"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Ekraanipilt"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Dena prest!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Pasatu hatza gora hasierako pantailara joateko"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Prest zaude telefonoa erabiltzen hasteko"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Prest zaude tableta erabiltzen hasteko"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Sisteman nabigatzeko ezarpenak"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Partekatu"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Atera pantaila-argazki bat"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"همه چیز آماده است!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"برای رفتن به «صفحه اصلی»، تند بهبالا بکشید"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"آمادهاید از تلفنتان استفاده کنید"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"آمادهاید از رایانه لوحیتان استفاده کنید"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"تنظیمات پیمایش سیستم"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"همرسانی"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"نماگرفت"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Valmis"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Siirry aloitusnäytölle pyyhkäisemällä ylös"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Olet valmis aloittamaan puhelimen käytön"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Olet valmis aloittamaan tabletin käytön"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Järjestelmän navigointiasetukset"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Jaa"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Kuvakaappaus"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Tout est prêt!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Balayez l\'écran vers le haut pour accéder à l\'écran d\'accueil"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Vous êtes maintenant prêt à utiliser votre téléphone"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Vous êtes maintenant prêt à utiliser votre tablette"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Paramètres de navigation du système"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Partager"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Capture d\'écran"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Tout est prêt !"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Balayez l\'écran vers le haut pour revenir à l\'accueil"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Vous pouvez maintenant utiliser votre téléphone"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Vous pouvez maintenant utiliser votre tablette"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Paramètres de navigation système"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Partager"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Capture d\'écran"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Todo listo"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Pasa o dedo cara arriba para ir á pantalla de inicio"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Todo está listo para comezar a utilizar o teléfono"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Todo está listo para comezar a utilizar a tableta"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Configuración da navegación do sistema"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Compartir"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Facer captura"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"બધું સેટ થઈ ગયું!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"હોમપેજ પર જવા માટે ઉપરની તરફ સ્વાઇપ કરો"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"તમે તમારા ફોનનો ઉપયોગ કરવા માટે તૈયાર છો"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"તમે તમારા ટૅબ્લેટનો ઉપયોગ કરવા માટે તૈયાર છો"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"સિસ્ટમના નૅવિગેશન સેટિંગ"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"શેર કરો"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"સ્ક્રીનશૉટ"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"हो गया!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"होम स्क्रीन पर जाने के लिए, ऊपर की ओर स्वाइप करें"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"अब आप अपना फ़ोन इस्तेमाल कर सकते हैं"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"आप टैबलेट को इस्तेमाल करने के लिए तैयार हैं"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"सिस्टम नेविगेशन सेटिंग"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"शेयर करें"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"स्क्रीनशॉट लें"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Sve je spremno!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Prijeđite prstom prema gore da biste otvorili početni zaslon"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Spremni ste za početak upotrebe telefona"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Spremni ste za početak upotrebe tableta"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Postavke navigacije sustavom"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Podijeli"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Snimka zaslona"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Kész is!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Felfelé csúsztatva megjelenik a Kezdőképernyő"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Készen áll a telefon használatára"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Készen áll a táblagép használatára"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Rendszer-navigációs beállítások"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Megosztás"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Képernyőkép"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Պատրաստ է"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Մատը սահեցրեք վերև՝ հիմնական էկրան անցնելու համար"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Դուք արդեն կարող եք օգտագործել ձեր հեռախոսը"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Դուք արդեն կարող եք օգտագործել ձեր պլանշետը"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Նավիգացիայի համակարգային կարգավորումներ"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Կիսվել"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Սքրինշոթ անել"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Semua siap."</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Geser ke atas untuk beralih ke Layar utama"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Anda sudah siap untuk mulai menggunakan ponsel"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Anda sudah siap untuk mulai menggunakan tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Setelan navigasi sistem"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Bagikan"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Allt tilbúið!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Strjúktu upp til að fara á heimaskjáinn"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Þú getur byrjað að nota símann"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Þú getur byrjað að nota spjaldtölvuna"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Stillingar kerfisstjórnunar"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Deila"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Skjámynd"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Finito."</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Scorri verso l\'alto per andare alla schermata Home"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Puoi iniziare a usare il tuo telefono"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Puoi iniziare a usare il tuo tablet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Impostazioni Navigazione del sistema"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Condividi"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"הכול מוכן!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"כדי לעבור לדף הבית, מחליקים כלפי מעלה"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"הכול מוכן ואפשר להתחיל להשתמש בטלפון"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"הכול מוכן ואפשר להתחיל להשתמש בטאבלט"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"הגדרות הניווט של המערכת"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"שיתוף"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"צילום מסך"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"設定完了"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"ホームに移動するには上にスワイプします"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"スマートフォンを使い始めることができます"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"これでタブレットが使えるようになりました"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"システム ナビゲーションの設定"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"共有"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"スクリーンショット"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"მზადაა!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"მთავარ გვერდზე გადასასვლელად გადაფურცლეთ ზევით"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"მზად ხართ ტელეფონის გამოსაყენებლად"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"მზად ხართ ტაბლეტის გამოსაყენებლად"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"სისტემის ნავიგაციის პარამეტრები"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"გაზიარება"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"ეკრანის ანაბეჭდი"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Бәрі дайын!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Негізгі экранға өту үшін жоғары қарай сырғытыңыз."</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Телефоныңыз пайдалануға дайын."</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Планшетіңіз пайдалануға дайын."</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Навигацияның жүйелік параметрлері"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Бөлісу"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Скриншот"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"រួចហើយ!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"អូសឡើងលើ ដើម្បីទៅកាន់អេក្រង់ដើម"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"អ្នកអាចចាប់ផ្ដើមប្រើទូរសព្ទរបស់អ្នកបានហើយ"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"អ្នកអាចចាប់ផ្ដើមប្រើថេប្លេតរបស់អ្នកបានហើយ"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"ការកំណត់ការរុករកប្រព័ន្ធ"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"ចែករំលែក"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"រូបថតអេក្រង់"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"ಎಲ್ಲವೂ ಸಿದ್ಧವಾಗಿದೆ!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"ಮುಖಪುಟಕ್ಕೆ ಹೋಗಲು ಮೇಲಕ್ಕೆ ಸ್ವೈಪ್ ಮಾಡಿ"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"ನಿಮ್ಮ ಫೋನ್ ಬಳಸುವುದನ್ನು ಪ್ರಾರಂಭಿಸಲು ನೀವು ಸಿದ್ದರಾಗಿರುವಿರಿ"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"ನಿಮ್ಮ ಟ್ಯಾಬ್ಲೆಟ್ ಬಳಸುವುದನ್ನು ಪ್ರಾರಂಭಿಸಲು ನೀವು ಸಿದ್ದರಾಗಿರುವಿರಿ"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"ಸಿಸ್ಟಂ ನ್ಯಾವಿಗೇಶನ್ ಸೆಟ್ಟಿಂಗ್ಗಳು"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"ಹಂಚಿಕೊಳ್ಳಿ"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"ಸ್ಕ್ರೀನ್ಶಾಟ್"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"설정 완료"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"위로 스와이프하여 홈으로 이동"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"휴대전화를 사용할 준비가 되었습니다."</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"태블릿을 사용할 준비가 되었습니다."</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"시스템 탐색 설정"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"공유"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"스크린샷"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Бүттү!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Башкы бетке өтүү үчүн экранды өйдө сүрүңүз"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Телефонуңузду колдоно берсеңиз болот"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Планшетиңизди колдоно берсеңиз болот"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Өтүү аракетинин тутумдук жөндөөлөрү"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Бөлүшүү"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Скриншот"</string>
|
||||
|
||||
@@ -16,4 +16,61 @@
|
||||
-->
|
||||
<resources>
|
||||
<dimen name="overview_task_margin">8dp</dimen>
|
||||
|
||||
<!-- Tips Gesture Tutorial -->
|
||||
<dimen name="gesture_tutorial_feedback_margin_start_end">126dp</dimen>
|
||||
<dimen name="gesture_tutorial_feedback_margin_top">24dp</dimen>
|
||||
|
||||
<!-- Gesture Tutorial mock conversations -->
|
||||
<dimen name="gesture_tutorial_message_padding_start">42dp</dimen>
|
||||
<dimen name="gesture_tutorial_message_padding_end">60dp</dimen>
|
||||
<dimen name="gesture_tutorial_top_bar_margin_start">42dp</dimen>
|
||||
<dimen name="gesture_tutorial_top_bar_margin_end">683dp</dimen>
|
||||
<dimen name="gesture_tutorial_top_bar_button_margin_end">42dp</dimen>
|
||||
<dimen name="gesture_tutorial_conversation_bottom_padding">35dp</dimen>
|
||||
<integer name="gesture_tutorial_extra_messages_visibility">2</integer> <!-- GONE -->
|
||||
<dimen name="gesture_tutorial_message_margin_start">505dp</dimen>
|
||||
<dimen name="gesture_tutorial_reply_margin_end">462dp</dimen>
|
||||
<dimen name="gesture_tutorial_input_margin_start">103dp</dimen>
|
||||
<dimen name="gesture_tutorial_input_margin_end">103dp</dimen>
|
||||
<dimen name="gesture_tutorial_tablet_message_1_margin">345dp</dimen>
|
||||
<dimen name="gesture_tutorial_tablet_reply_1_margin">341dp</dimen>
|
||||
<dimen name="gesture_tutorial_tablet_message_2_margin">501dp</dimen>
|
||||
<dimen name="gesture_tutorial_tablet_message_3_margin">345dp</dimen>
|
||||
<dimen name="gesture_tutorial_tablet_reply_2_margin">373dp</dimen>
|
||||
|
||||
<!-- Gesture Tutorial mock conversation lists -->
|
||||
<dimen name="gesture_tutorial_conversation_line_1_margin_end">607dp</dimen>
|
||||
<dimen name="gesture_tutorial_conversation_line_2_margin_end">460dp</dimen>
|
||||
<dimen name="gesture_tutorial_conversation_line_3_margin_end">554dp</dimen>
|
||||
<dimen name="gesture_tutorial_conversation_line_4_margin_end">517dp</dimen>
|
||||
<dimen name="gesture_tutorial_conversation_line_5_margin_end">570dp</dimen>
|
||||
<dimen name="gesture_tutorial_conversation_line_6_margin_end">336dp</dimen>
|
||||
<dimen name="gesture_tutorial_conversation_line_7_margin_end">523dp</dimen>
|
||||
<dimen name="gesture_tutorial_conversation_line_8_margin_end">500dp</dimen>
|
||||
<dimen name="gesture_tutorial_tablet_conversation_line_6_margin_end">15dp</dimen>
|
||||
<dimen name="gesture_tutorial_tablet_conversation_line_8_margin_end">72dp</dimen>
|
||||
<dimen name="gesture_tutorial_tablet_conversation_line_10_margin_end">111dp</dimen>
|
||||
<integer name="gesture_tutorial_extra_conversations_visibility">2</integer> <!-- GONE -->
|
||||
<dimen name="gesture_tutorial_mock_button_margin_end">34dp</dimen>
|
||||
<dimen name="gesture_tutorial_mock_button_margin_bottom">42dp</dimen>
|
||||
|
||||
<!-- Gesture Tutorial mock hotseats -->
|
||||
<dimen name="gesture_tutorial_hotseat_width">-2px</dimen> <!-- wrap_content -->
|
||||
<dimen name="gesture_tutorial_hotseat_height">-1px</dimen> <!-- match_parent -->
|
||||
<dimen name="gesture_tutorial_hotseat_padding_start_end">170dp</dimen>
|
||||
|
||||
<!-- Gesture Tutorial mock webpages -->
|
||||
<dimen name="gesture_tutorial_webpage_url_margin_start_end">24dp</dimen>
|
||||
<dimen name="gesture_tutorial_webpage_top_bar_button_margin_start">48dp</dimen>
|
||||
<dimen name="gesture_tutorial_webpage_top_bar_margin_start">121dp</dimen>
|
||||
<dimen name="gesture_tutorial_webpage_top_bar_margin_end">355dp</dimen>
|
||||
<dimen name="gesture_tutorial_webpage_line_1_margin_end">355dp</dimen>
|
||||
<dimen name="gesture_tutorial_webpage_line_2_margin_end">208dp</dimen>
|
||||
<dimen name="gesture_tutorial_webpage_line_3_margin_end">439dp</dimen>
|
||||
<dimen name="gesture_tutorial_webpage_block_margin_end">311dp</dimen>
|
||||
<integer name="gesture_tutorial_webpage_extra_lines_visibility">2</integer> <!-- GONE -->
|
||||
|
||||
<!-- Gesture Tutorial mock taskbar -->
|
||||
<dimen name="gesture_tutorial_taskbar_padding_start_end">218dp</dimen>
|
||||
</resources>
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"ຮຽບຮ້ອຍໝົດແລ້ວ!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"ປັດຂຶ້ນເພື່ອໄປຫາໜ້າຫຼັກ"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"ທ່ານພ້ອມເລີ່ມຕົ້ນໃຊ້ໂທລະສັບຂອງທ່ານແລ້ວ"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"ທ່ານພ້ອມເລີ່ມຕົ້ນໃຊ້ແທັບເລັດຂອງທ່ານແລ້ວ"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"ການຕັ້ງຄ່າການນຳທາງລະບົບ"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"ແບ່ງປັນ"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"ຮູບໜ້າຈໍ"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Paruošta!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Perbraukite aukštyn, kad grįžtumėte į pagrindinį ekraną"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Esate pasiruošę pradėti naudoti telefoną"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Esate pasiruošę pradėti naudoti planšetinį kompiuterį"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Sistemos naršymo nustatymai"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Bendrinti"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Ekrano kopija"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Gatavs!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Velciet augšup, lai pārietu uz sākuma ekrānu."</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Varat sākt izmantot savu tālruni"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Varat sākt izmantot savu planšetdatoru"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Sistēmas navigācijas iestatījumi"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Kopīgot"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Veikt ekrānuzņēmumu"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Готово!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Повлечете нагоре за да појдете на почетниот екран"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Спремни сте да почнете да го користите телефонот"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Спремни сте да почнете да го користите таблетот"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Поставки за системска навигација"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Сподели"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Слика од екранот"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"എല്ലാം സജ്ജീകരിച്ചു!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"ഹോമിലേക്ക് പോകാൻ മുകളിലേക്ക് സ്വൈപ്പ് ചെയ്യുക"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"ഫോൺ ഉപയോഗിച്ച് തുടങ്ങാൻ നിങ്ങൾ തയ്യാറാണ്"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"ടാബ്ലെറ്റ് ഉപയോഗിച്ച് തുടങ്ങാൻ നിങ്ങൾ തയ്യാറാണ്"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"സിസ്റ്റം നാവിഗേഷൻ ക്രമീകരണം"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"പങ്കിടുക"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"സ്ക്രീൻഷോട്ട്"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Тохируулж дууслаа!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Нүүр хуудас руу очихын тулд дээш шударна уу"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Та утсаа ашиглаж эхлэхэд бэлэн боллоо"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Та таблетаа ашиглаж эхлэхэд бэлэн боллоо"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Системийн навигацын тохиргоо"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Хуваалцах"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Дэлгэцийн агшин дарах"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"सर्व तयार आहे!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"होम वर जाण्यासाठी वरती स्वाइप करा"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"तुम्ही तुमचा फोन वापरण्यास सुरुवात करू शकता"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"तुम्ही तुमचा टॅबलेट वापरण्यास सुरुवात करू शकता"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"सिस्टम नेव्हिगेशन सेटिंग्ज"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"शेअर करा"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"स्क्रीनशॉट"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Siap!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Leret ke atas untuk kembali ke Laman Utama"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Anda sudah sedia untuk mula menggunakan telefon anda"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Anda bersedia untuk mula menggunakan tablet anda"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Tetapan navigasi sistem"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Kongsi"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Tangkapan skrin"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"အားလုံး အဆင်သင့်ပါ။"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"ပင်မစာမျက်နှာသို့သွားရန် အပေါ်သို့ ပွတ်ဆွဲပါ"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"သင့်ဖုန်းကို စတင်အသုံးပြုရန် အသင့်ဖြစ်ပါပြီ"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"သင့်တက်ဘလက်ကို စသုံးရန် အသင့်ဖြစ်ပါပြီ"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"စနစ် လမ်းညွှန် ဆက်တင်များ"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"မျှဝေရန်"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"ဖန်သားပြင်ဓာတ်ပုံ"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Alt er klart!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Sveip opp for å gå til startskjermen"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Du er klar til å begynne å bruke telefonen"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Du er klar til å begynne å bruke nettbrettet"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Innstillinger for systemnavigasjon"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Del"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Skjermdump"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"सबै तयार भयो!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"होममा जान माथितिर स्वाइप गर्नुहोस्"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"तपाईं आफ्नो फोन चलाउन थाल्न सक्नुहुन्छ"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"तपाईं अब आफ्नो ट्याब्लेट चलाउन थाल्न सक्नुहुन्छ"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"सिस्टम नेभिगेसनसम्बन्धी सेटिङ"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"सेयर गर्नुहोस्"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"स्क्रिनसट"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Klaar"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Swipe omhoog om naar het startscherm te gaan"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Je bent klaar om je telefoon te gebruiken"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Je bent klaar om je tablet te gebruiken"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Navigatie-instellingen van systeem"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Delen"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Screenshot"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"ସମ୍ପୂର୍ଣ୍ଣ ଭାବେ ପ୍ରସ୍ତୁତ!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"ମୂଳପୃଷ୍ଠାକୁ ଯିବା ପାଇଁ ଉପରକୁ ସ୍ୱାଇପ୍ କରନ୍ତୁ"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"ଆପଣ ଆପଣଙ୍କ ଫୋନ୍ ବ୍ୟବହାର କରିବା ପାଇଁ ପ୍ରସ୍ତୁତ ଅଛନ୍ତି"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"ଆପଣ ଆପଣଙ୍କ ଟାବଲେଟ ବ୍ୟବହାର କରିବା ଆରମ୍ଭ କରିବାକୁ ପ୍ରସ୍ତୁତ ଅଛନ୍ତି"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"ସିଷ୍ଟମ ନାଭିଗେସନ ସେଟିଂସ"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"ସେୟାର୍ କରନ୍ତୁ"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"ସ୍କ୍ରିନସଟ୍"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"ਪੂਰੀ ਤਰ੍ਹਾਂ ਤਿਆਰ!"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"ਹੋਮ \'ਤੇ ਜਾਣ ਲਈ ਉੱਪਰ ਵੱਲ ਸਵਾਈਪ ਕਰੋ"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"ਤੁਸੀਂ ਆਪਣਾ ਫ਼ੋਨ ਵਰਤਣ ਲਈ ਤਿਆਰ ਹੋ"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"ਤੁਸੀਂ ਆਪਣਾ ਟੈਬਲੈੱਟ ਵਰਤਣ ਲਈ ਤਿਆਰ ਹੋ"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"ਸਿਸਟਮ ਨੈਵੀਗੇਸ਼ਨ ਸੈਟਿੰਗਾਂ"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"ਸਾਂਝਾ ਕਰੋ"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"ਸਕ੍ਰੀਨਸ਼ਾਟ"</string>
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
<string name="allset_title" msgid="5021126669778966707">"Wszystko gotowe"</string>
|
||||
<string name="allset_hint" msgid="2384632994739392447">"Aby przejść na stronę główną, przesuń palcem w górę"</string>
|
||||
<string name="allset_description" msgid="6350320429953234580">"Teraz możesz zacząć używać telefonu"</string>
|
||||
<string name="allset_description_tablet" msgid="7332070270570039247">"Teraz możesz zacząć używać tabletu"</string>
|
||||
<string name="allset_navigation_settings" msgid="4713404605961476027"><annotation id="link">"Ustawienia nawigacji w systemie"</annotation></string>
|
||||
<string name="action_share" msgid="2648470652637092375">"Udostępnij"</string>
|
||||
<string name="action_screenshot" msgid="8171125848358142917">"Zrzut ekranu"</string>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user