right UI code
This commit is contained in:
15
MyApp_1/.gitignore
vendored
Normal file
15
MyApp_1/.gitignore
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
*.iml
|
||||
.gradle
|
||||
/local.properties
|
||||
/.idea/caches
|
||||
/.idea/libraries
|
||||
/.idea/modules.xml
|
||||
/.idea/workspace.xml
|
||||
/.idea/navEditor.xml
|
||||
/.idea/assetWizardSettings.xml
|
||||
.DS_Store
|
||||
/build
|
||||
/captures
|
||||
.externalNativeBuild
|
||||
.cxx
|
||||
local.properties
|
||||
3
MyApp_1/.idea/.gitignore
generated
vendored
Normal file
3
MyApp_1/.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
6
MyApp_1/.idea/compiler.xml
generated
Normal file
6
MyApp_1/.idea/compiler.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CompilerConfiguration">
|
||||
<bytecodeTargetLevel target="17" />
|
||||
</component>
|
||||
</project>
|
||||
20
MyApp_1/.idea/gradle.xml
generated
Normal file
20
MyApp_1/.idea/gradle.xml
generated
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||
<component name="GradleSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
<option name="testRunner" value="GRADLE" />
|
||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="gradleJvm" value="jbr-17" />
|
||||
<option name="modules">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
<option value="$PROJECT_DIR$/app" />
|
||||
</set>
|
||||
</option>
|
||||
</GradleProjectSettings>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
9
MyApp_1/.idea/misc.xml
generated
Normal file
9
MyApp_1/.idea/misc.xml
generated
Normal file
@@ -0,0 +1,9 @@
|
||||
<project version="4">
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||
</component>
|
||||
<component name="ProjectType">
|
||||
<option name="id" value="Android" />
|
||||
</component>
|
||||
</project>
|
||||
1
MyApp_1/app/.gitignore
vendored
Normal file
1
MyApp_1/app/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/build
|
||||
39
MyApp_1/app/build.gradle.kts
Normal file
39
MyApp_1/app/build.gradle.kts
Normal file
@@ -0,0 +1,39 @@
|
||||
plugins {
|
||||
id("com.android.application")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.example.myapp_1"
|
||||
compileSdk = 33
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "com.example.myapp_1"
|
||||
minSdk = 24
|
||||
targetSdk = 33
|
||||
versionCode = 1
|
||||
versionName = "1.0"
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
isMinifyEnabled = false
|
||||
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
implementation("androidx.appcompat:appcompat:1.6.1")
|
||||
implementation("com.google.android.material:material:1.8.0")
|
||||
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
||||
testImplementation("junit:junit:4.13.2")
|
||||
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
||||
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
||||
}
|
||||
21
MyApp_1/app/proguard-rules.pro
vendored
Normal file
21
MyApp_1/app/proguard-rules.pro
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# Add project specific ProGuard rules here.
|
||||
# You can control the set of applied configuration files using the
|
||||
# proguardFiles setting in build.gradle.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
||||
|
||||
# Uncomment this to preserve the line number information for
|
||||
# debugging stack traces.
|
||||
#-keepattributes SourceFile,LineNumberTable
|
||||
|
||||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import androidx.test.platform.app.InstrumentationRegistry;
|
||||
import androidx.test.ext.junit.runners.AndroidJUnit4;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
/**
|
||||
* Instrumented test, which will execute on an Android device.
|
||||
*
|
||||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
|
||||
*/
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class ExampleInstrumentedTest {
|
||||
@Test
|
||||
public void useAppContext() {
|
||||
// Context of the app under test.
|
||||
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
|
||||
assertEquals("com.example.myapp_1", appContext.getPackageName());
|
||||
}
|
||||
}
|
||||
38
MyApp_1/app/src/main/AndroidManifest.xml
Normal file
38
MyApp_1/app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.example.myapp_1" >
|
||||
|
||||
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:theme="@style/AppTheme"
|
||||
android:label="@string/app_name" >
|
||||
<activity
|
||||
android:name=".begin_activity"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize"
|
||||
android:label="@string/app_name"
|
||||
android:exported="true" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="com.example.myapp_1.login_page_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.pw_reset_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.sign_in_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.getinh_started_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.getinh_started_2_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.trains_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.notifications_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.schedule_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.station_details_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.stations_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.home_activity"></activity>
|
||||
<activity android:name="com.example.myapp_1.trips_activity"></activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file begin
|
||||
* @date Friday 27th of October 2023 05:58:49 PM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
public class begin_activity extends Activity {
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.begin);
|
||||
|
||||
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,117 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:23:55 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import android.content.Intent;
|
||||
|
||||
public class getinh_started_2_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__getinh_started_2_ek2;
|
||||
private ImageView image_4;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private ImageView rectangle_43;
|
||||
private View _home_indicator;
|
||||
private TextView find_your_trains_easily_and_buy_tickets_online_;
|
||||
private View _rectangle_8;
|
||||
private View _bg___group_12_ek1;
|
||||
private TextView next;
|
||||
private TextView find_your_train_easily;
|
||||
private View _bg___group_16_ek1;
|
||||
private TextView skip;
|
||||
private ImageView vector;
|
||||
private View _bg__group_13_ek1;
|
||||
private View ellipse_12;
|
||||
private View ellipse_14;
|
||||
private View ellipse_13;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.getinh_started_2);
|
||||
|
||||
|
||||
_bg__getinh_started_2_ek2 = (View) findViewById(R.id._bg__getinh_started_2_ek2);
|
||||
image_4 = (ImageView) findViewById(R.id.image_4);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
rectangle_43 = (ImageView) findViewById(R.id.rectangle_43);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
find_your_trains_easily_and_buy_tickets_online_ = (TextView) findViewById(R.id.find_your_trains_easily_and_buy_tickets_online_);
|
||||
_rectangle_8 = (View) findViewById(R.id._rectangle_8);
|
||||
_bg___group_12_ek1 = (View) findViewById(R.id._bg___group_12_ek1);
|
||||
next = (TextView) findViewById(R.id.next);
|
||||
find_your_train_easily = (TextView) findViewById(R.id.find_your_train_easily);
|
||||
_bg___group_16_ek1 = (View) findViewById(R.id._bg___group_16_ek1);
|
||||
skip = (TextView) findViewById(R.id.skip);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
_bg__group_13_ek1 = (View) findViewById(R.id._bg__group_13_ek1);
|
||||
ellipse_12 = (View) findViewById(R.id.ellipse_12);
|
||||
ellipse_14 = (View) findViewById(R.id.ellipse_14);
|
||||
ellipse_13 = (View) findViewById(R.id.ellipse_13);
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_rectangle_8.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), home_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,129 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:22:49 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.content.Intent;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class getinh_started_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__getinh_started_ek2;
|
||||
private ImageView _image_4;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private ImageView rectangle_43;
|
||||
private View _home_indicator;
|
||||
private TextView alexandria_s_tram_prediction;
|
||||
private View _bg___group_15_ek1;
|
||||
private TextView skip;
|
||||
private ImageView vector;
|
||||
private View _bg__group_13_ek1;
|
||||
private View ellipse_12;
|
||||
private View ellipse_14;
|
||||
private View ellipse_13;
|
||||
private TextView this_app_will_provide_accurate_tram_arriving_time_at_selected_stations;
|
||||
private View _rectangle_8;
|
||||
private View _bg___group_12_ek1;
|
||||
private TextView get_started;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.getinh_started);
|
||||
|
||||
|
||||
_bg__getinh_started_ek2 = (View) findViewById(R.id._bg__getinh_started_ek2);
|
||||
_image_4 = (ImageView) findViewById(R.id._image_4);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
rectangle_43 = (ImageView) findViewById(R.id.rectangle_43);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
alexandria_s_tram_prediction = (TextView) findViewById(R.id.alexandria_s_tram_prediction);
|
||||
_bg___group_15_ek1 = (View) findViewById(R.id._bg___group_15_ek1);
|
||||
skip = (TextView) findViewById(R.id.skip);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
_bg__group_13_ek1 = (View) findViewById(R.id._bg__group_13_ek1);
|
||||
ellipse_12 = (View) findViewById(R.id.ellipse_12);
|
||||
ellipse_14 = (View) findViewById(R.id.ellipse_14);
|
||||
ellipse_13 = (View) findViewById(R.id.ellipse_13);
|
||||
this_app_will_provide_accurate_tram_arriving_time_at_selected_stations = (TextView) findViewById(R.id.this_app_will_provide_accurate_tram_arriving_time_at_selected_stations);
|
||||
_rectangle_8 = (View) findViewById(R.id._rectangle_8);
|
||||
_bg___group_12_ek1 = (View) findViewById(R.id._bg___group_12_ek1);
|
||||
get_started = (TextView) findViewById(R.id.get_started);
|
||||
|
||||
|
||||
_image_4.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), getinh_started_2_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_rectangle_8.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), getinh_started_2_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
160
MyApp_1/app/src/main/java/com/example/myapp_1/home_activity.java
Normal file
160
MyApp_1/app/src/main/java/com/example/myapp_1/home_activity.java
Normal file
@@ -0,0 +1,160 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:29:20 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class home_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__home_ek2;
|
||||
private ImageView image_7;
|
||||
private ImageView tram_1;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private View _bg___group_12_ek1;
|
||||
private TextView next;
|
||||
private View _bg___eva_menu_outline_ek1;
|
||||
private ImageView vector;
|
||||
private ImageView vector_ek1;
|
||||
private ImageView vector_ek2;
|
||||
private View _bg__fe_search_ek1;
|
||||
private ImageView vector_ek3;
|
||||
private TextView good_evening___7amo;
|
||||
private ImageView rectangle_43;
|
||||
private View _bg___group_24_ek1;
|
||||
private TextView trips;
|
||||
private View ellipse_7;
|
||||
private View _bg______icon__route__ek1;
|
||||
private ImageView vector_ek4;
|
||||
private View _bg__group_23_ek1;
|
||||
private TextView trains;
|
||||
private View ellipse_7_ek1;
|
||||
private View _bg__map_train_station_ek1;
|
||||
private ImageView vector_ek5;
|
||||
private View home_indicator;
|
||||
private View _bg___group_14_ek1;
|
||||
private TextView trains_ek1;
|
||||
private View ellipse_7_ek2;
|
||||
private View _bg__map_train_station_ek3;
|
||||
private ImageView vector_ek6;
|
||||
private View _bg___group_19_ek1;
|
||||
private TextView schedule;
|
||||
private View ellipse_9;
|
||||
private View _bg__healthicons_i_schedule_school_date_time_ek1;
|
||||
private View _bg__group_ek1;
|
||||
private ImageView vector_ek7;
|
||||
private ImageView vector_ek8;
|
||||
private ImageView vector_ek9;
|
||||
private ImageView vector_ek10;
|
||||
private ImageView vector_ek11;
|
||||
private ImageView vector_ek12;
|
||||
private View _bg___group_21_ek1;
|
||||
private TextView notifications;
|
||||
private View ellipse_12;
|
||||
private View _bg__ic_sharp_notifications_ek1;
|
||||
private ImageView vector_ek13;
|
||||
private View _bg___group_22_ek1;
|
||||
private TextView stations;
|
||||
private View ellipse_11;
|
||||
private ImageView image_5;
|
||||
private View rectangle_44;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.home);
|
||||
|
||||
|
||||
_bg__home_ek2 = (View) findViewById(R.id._bg__home_ek2);
|
||||
image_7 = (ImageView) findViewById(R.id.image_7);
|
||||
tram_1 = (ImageView) findViewById(R.id.tram_1);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
_bg___group_12_ek1 = (View) findViewById(R.id._bg___group_12_ek1);
|
||||
next = (TextView) findViewById(R.id.next);
|
||||
_bg___eva_menu_outline_ek1 = (View) findViewById(R.id._bg___eva_menu_outline_ek1);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
vector_ek2 = (ImageView) findViewById(R.id.vector_ek2);
|
||||
_bg__fe_search_ek1 = (View) findViewById(R.id._bg__fe_search_ek1);
|
||||
vector_ek3 = (ImageView) findViewById(R.id.vector_ek3);
|
||||
good_evening___7amo = (TextView) findViewById(R.id.good_evening___7amo);
|
||||
rectangle_43 = (ImageView) findViewById(R.id.rectangle_43);
|
||||
_bg___group_24_ek1 = (View) findViewById(R.id._bg___group_24_ek1);
|
||||
trips = (TextView) findViewById(R.id.trips);
|
||||
ellipse_7 = (View) findViewById(R.id.ellipse_7);
|
||||
_bg______icon__route__ek1 = (View) findViewById(R.id._bg______icon__route__ek1);
|
||||
vector_ek4 = (ImageView) findViewById(R.id.vector_ek4);
|
||||
_bg__group_23_ek1 = (View) findViewById(R.id._bg__group_23_ek1);
|
||||
trains = (TextView) findViewById(R.id.trains);
|
||||
ellipse_7_ek1 = (View) findViewById(R.id.ellipse_7_ek1);
|
||||
_bg__map_train_station_ek1 = (View) findViewById(R.id._bg__map_train_station_ek1);
|
||||
vector_ek5 = (ImageView) findViewById(R.id.vector_ek5);
|
||||
home_indicator = (View) findViewById(R.id.home_indicator);
|
||||
_bg___group_14_ek1 = (View) findViewById(R.id._bg___group_14_ek1);
|
||||
trains_ek1 = (TextView) findViewById(R.id.trains_ek1);
|
||||
ellipse_7_ek2 = (View) findViewById(R.id.ellipse_7_ek2);
|
||||
_bg__map_train_station_ek3 = (View) findViewById(R.id._bg__map_train_station_ek3);
|
||||
vector_ek6 = (ImageView) findViewById(R.id.vector_ek6);
|
||||
_bg___group_19_ek1 = (View) findViewById(R.id._bg___group_19_ek1);
|
||||
schedule = (TextView) findViewById(R.id.schedule);
|
||||
ellipse_9 = (View) findViewById(R.id.ellipse_9);
|
||||
_bg__healthicons_i_schedule_school_date_time_ek1 = (View) findViewById(R.id._bg__healthicons_i_schedule_school_date_time_ek1);
|
||||
_bg__group_ek1 = (View) findViewById(R.id._bg__group_ek1);
|
||||
vector_ek7 = (ImageView) findViewById(R.id.vector_ek7);
|
||||
vector_ek8 = (ImageView) findViewById(R.id.vector_ek8);
|
||||
vector_ek9 = (ImageView) findViewById(R.id.vector_ek9);
|
||||
vector_ek10 = (ImageView) findViewById(R.id.vector_ek10);
|
||||
vector_ek11 = (ImageView) findViewById(R.id.vector_ek11);
|
||||
vector_ek12 = (ImageView) findViewById(R.id.vector_ek12);
|
||||
_bg___group_21_ek1 = (View) findViewById(R.id._bg___group_21_ek1);
|
||||
notifications = (TextView) findViewById(R.id.notifications);
|
||||
ellipse_12 = (View) findViewById(R.id.ellipse_12);
|
||||
_bg__ic_sharp_notifications_ek1 = (View) findViewById(R.id._bg__ic_sharp_notifications_ek1);
|
||||
vector_ek13 = (ImageView) findViewById(R.id.vector_ek13);
|
||||
_bg___group_22_ek1 = (View) findViewById(R.id._bg___group_22_ek1);
|
||||
stations = (TextView) findViewById(R.id.stations);
|
||||
ellipse_11 = (View) findViewById(R.id.ellipse_11);
|
||||
image_5 = (ImageView) findViewById(R.id.image_5);
|
||||
rectangle_44 = (View) findViewById(R.id.rectangle_44);
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,66 @@
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class login_page_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__login_page_ek2;
|
||||
private View rectangle_7;
|
||||
private View rectangle_6;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private TextView username;
|
||||
private TextView forgot_password_;
|
||||
private TextView password;
|
||||
private View _bg__group_12_ek1;
|
||||
private View rectangle_8;
|
||||
private TextView login;
|
||||
private TextView don_t_have_an_account__sign_up;
|
||||
private View home_indicator;
|
||||
private ImageView image_3;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.login_page);
|
||||
|
||||
|
||||
_bg__login_page_ek2 = (View) findViewById(R.id._bg__login_page_ek2);
|
||||
rectangle_7 = (View) findViewById(R.id.rectangle_7);
|
||||
rectangle_6 = (View) findViewById(R.id.rectangle_6);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
username = (TextView) findViewById(R.id.username);
|
||||
forgot_password_ = (TextView) findViewById(R.id.forgot_password_);
|
||||
password = (TextView) findViewById(R.id.password);
|
||||
_bg__group_12_ek1 = (View) findViewById(R.id._bg__group_12_ek1);
|
||||
rectangle_8 = (View) findViewById(R.id.rectangle_8);
|
||||
login = (TextView) findViewById(R.id.login);
|
||||
don_t_have_an_account__sign_up = (TextView) findViewById(R.id.don_t_have_an_account__sign_up);
|
||||
home_indicator = (View) findViewById(R.id.home_indicator);
|
||||
image_3 = (ImageView) findViewById(R.id.image_3);
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:25:45 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import android.content.Intent;
|
||||
|
||||
public class notifications_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__notifications_ek2;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private ImageView vector;
|
||||
private TextView _notifications_ek3;
|
||||
private TextView today;
|
||||
private TextView yesterday;
|
||||
private View _home_indicator;
|
||||
private View rectangle_18822;
|
||||
private View _bg__group_13221_ek1;
|
||||
private View ellipse_20;
|
||||
private View _bg__heroicons_solid_speakerphone_ek1;
|
||||
private ImageView vector_ek1;
|
||||
private View _bg__group_13223_ek1;
|
||||
private View ellipse_20_ek1;
|
||||
private View _bg__heroicons_solid_speakerphone_ek3;
|
||||
private ImageView vector_ek2;
|
||||
private View _bg__group_13225_ek1;
|
||||
private View ellipse_20_ek2;
|
||||
private View _bg__group_13222_ek1;
|
||||
private View ellipse_20_ek3;
|
||||
private View _bg__heroicons_solid_speakerphone_ek5;
|
||||
private View _bg__group_13224_ek1;
|
||||
private View ellipse_20_ek4;
|
||||
private View _bg__group_13226_ek1;
|
||||
private View ellipse_20_ek5;
|
||||
private ImageView vector_ek3;
|
||||
private ImageView vector_ek4;
|
||||
private TextView the_train_from_colombo_to_aluthgama_now_arrives_at_the_1st___;
|
||||
private TextView the_express_train_from_colombo_to_galle_will_be_delayed_;
|
||||
private TextView visit_our_website_today__www_railway_gov_lk;
|
||||
private TextView your_train_kts_mda_1122_is_arriving_now;
|
||||
private TextView ticket_purchase_successful_;
|
||||
private TextView ticket_purchase_successful__ek1;
|
||||
private TextView now;
|
||||
private TextView _20_may;
|
||||
private TextView _20_may_ek1;
|
||||
private TextView _5_min;
|
||||
private TextView _20_may_ek2;
|
||||
private TextView _20_may_ek3;
|
||||
private View _bg__map_train_station_ek1;
|
||||
private ImageView vector_ek5;
|
||||
private View ellipse_21;
|
||||
private ImageView vector_ek6;
|
||||
private View ellipse_22;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.notifications);
|
||||
|
||||
|
||||
_bg__notifications_ek2 = (View) findViewById(R.id._bg__notifications_ek2);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
_notifications_ek3 = (TextView) findViewById(R.id._notifications_ek3);
|
||||
today = (TextView) findViewById(R.id.today);
|
||||
yesterday = (TextView) findViewById(R.id.yesterday);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
rectangle_18822 = (View) findViewById(R.id.rectangle_18822);
|
||||
_bg__group_13221_ek1 = (View) findViewById(R.id._bg__group_13221_ek1);
|
||||
ellipse_20 = (View) findViewById(R.id.ellipse_20);
|
||||
_bg__heroicons_solid_speakerphone_ek1 = (View) findViewById(R.id._bg__heroicons_solid_speakerphone_ek1);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
_bg__group_13223_ek1 = (View) findViewById(R.id._bg__group_13223_ek1);
|
||||
ellipse_20_ek1 = (View) findViewById(R.id.ellipse_20_ek1);
|
||||
_bg__heroicons_solid_speakerphone_ek3 = (View) findViewById(R.id._bg__heroicons_solid_speakerphone_ek3);
|
||||
vector_ek2 = (ImageView) findViewById(R.id.vector_ek2);
|
||||
_bg__group_13225_ek1 = (View) findViewById(R.id._bg__group_13225_ek1);
|
||||
ellipse_20_ek2 = (View) findViewById(R.id.ellipse_20_ek2);
|
||||
_bg__group_13222_ek1 = (View) findViewById(R.id._bg__group_13222_ek1);
|
||||
ellipse_20_ek3 = (View) findViewById(R.id.ellipse_20_ek3);
|
||||
_bg__heroicons_solid_speakerphone_ek5 = (View) findViewById(R.id._bg__heroicons_solid_speakerphone_ek5);
|
||||
_bg__group_13224_ek1 = (View) findViewById(R.id._bg__group_13224_ek1);
|
||||
ellipse_20_ek4 = (View) findViewById(R.id.ellipse_20_ek4);
|
||||
_bg__group_13226_ek1 = (View) findViewById(R.id._bg__group_13226_ek1);
|
||||
ellipse_20_ek5 = (View) findViewById(R.id.ellipse_20_ek5);
|
||||
vector_ek3 = (ImageView) findViewById(R.id.vector_ek3);
|
||||
vector_ek4 = (ImageView) findViewById(R.id.vector_ek4);
|
||||
the_train_from_colombo_to_aluthgama_now_arrives_at_the_1st___ = (TextView) findViewById(R.id.the_train_from_colombo_to_aluthgama_now_arrives_at_the_1st___);
|
||||
the_express_train_from_colombo_to_galle_will_be_delayed_ = (TextView) findViewById(R.id.the_express_train_from_colombo_to_galle_will_be_delayed_);
|
||||
visit_our_website_today__www_railway_gov_lk = (TextView) findViewById(R.id.visit_our_website_today__www_railway_gov_lk);
|
||||
your_train_kts_mda_1122_is_arriving_now = (TextView) findViewById(R.id.your_train_kts_mda_1122_is_arriving_now);
|
||||
ticket_purchase_successful_ = (TextView) findViewById(R.id.ticket_purchase_successful_);
|
||||
ticket_purchase_successful__ek1 = (TextView) findViewById(R.id.ticket_purchase_successful__ek1);
|
||||
now = (TextView) findViewById(R.id.now);
|
||||
_20_may = (TextView) findViewById(R.id._20_may);
|
||||
_20_may_ek1 = (TextView) findViewById(R.id._20_may_ek1);
|
||||
_5_min = (TextView) findViewById(R.id._5_min);
|
||||
_20_may_ek2 = (TextView) findViewById(R.id._20_may_ek2);
|
||||
_20_may_ek3 = (TextView) findViewById(R.id._20_may_ek3);
|
||||
_bg__map_train_station_ek1 = (View) findViewById(R.id._bg__map_train_station_ek1);
|
||||
vector_ek5 = (ImageView) findViewById(R.id.vector_ek5);
|
||||
ellipse_21 = (View) findViewById(R.id.ellipse_21);
|
||||
vector_ek6 = (ImageView) findViewById(R.id.vector_ek6);
|
||||
ellipse_22 = (View) findViewById(R.id.ellipse_22);
|
||||
|
||||
|
||||
_notifications_ek3.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), home_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,97 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:20:53 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import android.content.Intent;
|
||||
|
||||
public class pw_reset_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__pw_reset_ek2;
|
||||
private View rectangle_38;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private TextView enter_the_email_associated_with_your_account_;
|
||||
private TextView email_address;
|
||||
private TextView abcd_gmail_com;
|
||||
private View _bg__group_10_ek1;
|
||||
private View rectangle_1;
|
||||
private TextView send;
|
||||
private TextView reset_password;
|
||||
private View _bg___eva_arrow_ios_back_fill_ek1;
|
||||
private ImageView vector;
|
||||
private View _home_indicator;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.pw_reset);
|
||||
|
||||
|
||||
_bg__pw_reset_ek2 = (View) findViewById(R.id._bg__pw_reset_ek2);
|
||||
rectangle_38 = (View) findViewById(R.id.rectangle_38);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
enter_the_email_associated_with_your_account_ = (TextView) findViewById(R.id.enter_the_email_associated_with_your_account_);
|
||||
email_address = (TextView) findViewById(R.id.email_address);
|
||||
abcd_gmail_com = (TextView) findViewById(R.id.abcd_gmail_com);
|
||||
_bg__group_10_ek1 = (View) findViewById(R.id._bg__group_10_ek1);
|
||||
rectangle_1 = (View) findViewById(R.id.rectangle_1);
|
||||
send = (TextView) findViewById(R.id.send);
|
||||
reset_password = (TextView) findViewById(R.id.reset_password);
|
||||
_bg___eva_arrow_ios_back_fill_ek1 = (View) findViewById(R.id._bg___eva_arrow_ios_back_fill_ek1);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,155 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:26:26 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import android.content.Intent;
|
||||
|
||||
public class schedule_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__schedule_ek2;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private ImageView _vector;
|
||||
private TextView schedule_ek3;
|
||||
private View _home_indicator;
|
||||
private TextView start_station_;
|
||||
private TextView end_station_;
|
||||
private TextView start_time_;
|
||||
private TextView end_time_;
|
||||
private View rectangle_38;
|
||||
private View rectangle_40;
|
||||
private View rectangle_39;
|
||||
private ImageView vector_ek1;
|
||||
private ImageView vector_ek2;
|
||||
private ImageView vector_ek3;
|
||||
private View rectangle_41;
|
||||
private TextView date_;
|
||||
private View rectangle_42;
|
||||
private View _bg__group_23_ek1;
|
||||
private ImageView vector_ek4;
|
||||
private ImageView vector_ek5;
|
||||
private ImageView vector_ek6;
|
||||
private ImageView vector_ek7;
|
||||
private TextView dd__mm__yy;
|
||||
private View _bg__group_11_ek1;
|
||||
private View rectangle_8;
|
||||
private TextView search_train;
|
||||
private View _bg__group_ek1;
|
||||
private ImageView vector_ek8;
|
||||
private ImageView vector_ek9;
|
||||
private ImageView vector_ek10;
|
||||
private ImageView vector_ek11;
|
||||
private TextView __select_;
|
||||
private TextView __select__ek1;
|
||||
private TextView __select__ek2;
|
||||
private TextView __select__ek3;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.schedule);
|
||||
|
||||
|
||||
_bg__schedule_ek2 = (View) findViewById(R.id._bg__schedule_ek2);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
_vector = (ImageView) findViewById(R.id._vector);
|
||||
schedule_ek3 = (TextView) findViewById(R.id.schedule_ek3);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
start_station_ = (TextView) findViewById(R.id.start_station_);
|
||||
end_station_ = (TextView) findViewById(R.id.end_station_);
|
||||
start_time_ = (TextView) findViewById(R.id.start_time_);
|
||||
end_time_ = (TextView) findViewById(R.id.end_time_);
|
||||
rectangle_38 = (View) findViewById(R.id.rectangle_38);
|
||||
rectangle_40 = (View) findViewById(R.id.rectangle_40);
|
||||
rectangle_39 = (View) findViewById(R.id.rectangle_39);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
vector_ek2 = (ImageView) findViewById(R.id.vector_ek2);
|
||||
vector_ek3 = (ImageView) findViewById(R.id.vector_ek3);
|
||||
rectangle_41 = (View) findViewById(R.id.rectangle_41);
|
||||
date_ = (TextView) findViewById(R.id.date_);
|
||||
rectangle_42 = (View) findViewById(R.id.rectangle_42);
|
||||
_bg__group_23_ek1 = (View) findViewById(R.id._bg__group_23_ek1);
|
||||
vector_ek4 = (ImageView) findViewById(R.id.vector_ek4);
|
||||
vector_ek5 = (ImageView) findViewById(R.id.vector_ek5);
|
||||
vector_ek6 = (ImageView) findViewById(R.id.vector_ek6);
|
||||
vector_ek7 = (ImageView) findViewById(R.id.vector_ek7);
|
||||
dd__mm__yy = (TextView) findViewById(R.id.dd__mm__yy);
|
||||
_bg__group_11_ek1 = (View) findViewById(R.id._bg__group_11_ek1);
|
||||
rectangle_8 = (View) findViewById(R.id.rectangle_8);
|
||||
search_train = (TextView) findViewById(R.id.search_train);
|
||||
_bg__group_ek1 = (View) findViewById(R.id._bg__group_ek1);
|
||||
vector_ek8 = (ImageView) findViewById(R.id.vector_ek8);
|
||||
vector_ek9 = (ImageView) findViewById(R.id.vector_ek9);
|
||||
vector_ek10 = (ImageView) findViewById(R.id.vector_ek10);
|
||||
vector_ek11 = (ImageView) findViewById(R.id.vector_ek11);
|
||||
__select_ = (TextView) findViewById(R.id.__select_);
|
||||
__select__ek1 = (TextView) findViewById(R.id.__select__ek1);
|
||||
__select__ek2 = (TextView) findViewById(R.id.__select__ek2);
|
||||
__select__ek3 = (TextView) findViewById(R.id.__select__ek3);
|
||||
|
||||
|
||||
_vector.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), home_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,115 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:22:01 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import android.content.Intent;
|
||||
|
||||
public class sign_in_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__sign_in_ek2;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private TextView register;
|
||||
private View _bg___eva_arrow_ios_back_fill_ek1;
|
||||
private ImageView vector;
|
||||
private View _home_indicator;
|
||||
private View rectangle_38;
|
||||
private View rectangle_42;
|
||||
private View rectangle_40;
|
||||
private View rectangle_39;
|
||||
private View rectangle_41;
|
||||
private TextView name;
|
||||
private TextView phone_number;
|
||||
private TextView email;
|
||||
private TextView nic_number;
|
||||
private TextView password;
|
||||
private View ellipse_11;
|
||||
private View _bg__group_11_ek1;
|
||||
private View rectangle_8;
|
||||
private TextView create_account;
|
||||
private View _bg__ant_design_user_add_outlined_ek1;
|
||||
private ImageView vector_ek1;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.sign_in);
|
||||
|
||||
|
||||
_bg__sign_in_ek2 = (View) findViewById(R.id._bg__sign_in_ek2);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
register = (TextView) findViewById(R.id.register);
|
||||
_bg___eva_arrow_ios_back_fill_ek1 = (View) findViewById(R.id._bg___eva_arrow_ios_back_fill_ek1);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
rectangle_38 = (View) findViewById(R.id.rectangle_38);
|
||||
rectangle_42 = (View) findViewById(R.id.rectangle_42);
|
||||
rectangle_40 = (View) findViewById(R.id.rectangle_40);
|
||||
rectangle_39 = (View) findViewById(R.id.rectangle_39);
|
||||
rectangle_41 = (View) findViewById(R.id.rectangle_41);
|
||||
name = (TextView) findViewById(R.id.name);
|
||||
phone_number = (TextView) findViewById(R.id.phone_number);
|
||||
email = (TextView) findViewById(R.id.email);
|
||||
nic_number = (TextView) findViewById(R.id.nic_number);
|
||||
password = (TextView) findViewById(R.id.password);
|
||||
ellipse_11 = (View) findViewById(R.id.ellipse_11);
|
||||
_bg__group_11_ek1 = (View) findViewById(R.id._bg__group_11_ek1);
|
||||
rectangle_8 = (View) findViewById(R.id.rectangle_8);
|
||||
create_account = (TextView) findViewById(R.id.create_account);
|
||||
_bg__ant_design_user_add_outlined_ek1 = (View) findViewById(R.id._bg__ant_design_user_add_outlined_ek1);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,147 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:27:35 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.content.Intent;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class station_details_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__station_details_ek2;
|
||||
private View _bg__akar_icons_share_box_ek1;
|
||||
private View _home_indicator;
|
||||
private View _bg__frame_4_ek1;
|
||||
private ImageView image_13;
|
||||
private ImageView image_14;
|
||||
private ImageView image_15;
|
||||
private ImageView image_16;
|
||||
private ImageView image_17;
|
||||
private View _bg__mi_options_vertical_ek1;
|
||||
private ImageView vector;
|
||||
private ImageView _vector_ek1;
|
||||
private ImageView rectangle_43;
|
||||
private TextView fort_railway_station;
|
||||
private TextView fort_railway_station_is_a_major_rail_hub_in_colombo__sri_lanka__the_station_is_served_by_sri_lanka_railways__with_many_inter_city_and_commuter_trains_entering_each_day__fort_station_is_the_main_rail_gateway_to_central_colombo__it_is_the_terminus_of_most_intercity_trains_in_the_country_;
|
||||
private TextView address_;
|
||||
private TextView head_of_the_organization_;
|
||||
private TextView general_information;
|
||||
private TextView hours_;
|
||||
private TextView phone_;
|
||||
private TextView fax_nos__;
|
||||
private TextView telephones__;
|
||||
private TextView email_;
|
||||
private TextView colombo;
|
||||
private TextView mr__jayasundara;
|
||||
private TextView __94_11_2_446490;
|
||||
private TextView __94_11_4_600_111;
|
||||
private TextView gmr_railway_gov_lk;
|
||||
private TextView open___24_hours;
|
||||
private TextView _011_2434215;
|
||||
private ImageView vector_ek2;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.station_details);
|
||||
|
||||
|
||||
_bg__station_details_ek2 = (View) findViewById(R.id._bg__station_details_ek2);
|
||||
_bg__akar_icons_share_box_ek1 = (View) findViewById(R.id._bg__akar_icons_share_box_ek1);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
_bg__frame_4_ek1 = (View) findViewById(R.id._bg__frame_4_ek1);
|
||||
image_13 = (ImageView) findViewById(R.id.image_13);
|
||||
image_14 = (ImageView) findViewById(R.id.image_14);
|
||||
image_15 = (ImageView) findViewById(R.id.image_15);
|
||||
image_16 = (ImageView) findViewById(R.id.image_16);
|
||||
image_17 = (ImageView) findViewById(R.id.image_17);
|
||||
_bg__mi_options_vertical_ek1 = (View) findViewById(R.id._bg__mi_options_vertical_ek1);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
_vector_ek1 = (ImageView) findViewById(R.id._vector_ek1);
|
||||
rectangle_43 = (ImageView) findViewById(R.id.rectangle_43);
|
||||
fort_railway_station = (TextView) findViewById(R.id.fort_railway_station);
|
||||
fort_railway_station_is_a_major_rail_hub_in_colombo__sri_lanka__the_station_is_served_by_sri_lanka_railways__with_many_inter_city_and_commuter_trains_entering_each_day__fort_station_is_the_main_rail_gateway_to_central_colombo__it_is_the_terminus_of_most_intercity_trains_in_the_country_ = (TextView) findViewById(R.id.fort_railway_station_is_a_major_rail_hub_in_colombo__sri_lanka__the_station_is_served_by_sri_lanka_railways__with_many_inter_city_and_commuter_trains_entering_each_day__fort_station_is_the_main_rail_gateway_to_central_colombo__it_is_the_terminus_of_most_intercity_trains_in_the_country_);
|
||||
address_ = (TextView) findViewById(R.id.address_);
|
||||
head_of_the_organization_ = (TextView) findViewById(R.id.head_of_the_organization_);
|
||||
general_information = (TextView) findViewById(R.id.general_information);
|
||||
hours_ = (TextView) findViewById(R.id.hours_);
|
||||
phone_ = (TextView) findViewById(R.id.phone_);
|
||||
fax_nos__ = (TextView) findViewById(R.id.fax_nos__);
|
||||
telephones__ = (TextView) findViewById(R.id.telephones__);
|
||||
email_ = (TextView) findViewById(R.id.email_);
|
||||
colombo = (TextView) findViewById(R.id.colombo);
|
||||
mr__jayasundara = (TextView) findViewById(R.id.mr__jayasundara);
|
||||
__94_11_2_446490 = (TextView) findViewById(R.id.__94_11_2_446490);
|
||||
__94_11_4_600_111 = (TextView) findViewById(R.id.__94_11_4_600_111);
|
||||
gmr_railway_gov_lk = (TextView) findViewById(R.id.gmr_railway_gov_lk);
|
||||
open___24_hours = (TextView) findViewById(R.id.open___24_hours);
|
||||
_011_2434215 = (TextView) findViewById(R.id._011_2434215);
|
||||
vector_ek2 = (ImageView) findViewById(R.id.vector_ek2);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_vector_ek1.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), stations_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,191 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:28:32 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.TextView;
|
||||
import android.content.Intent;
|
||||
import android.widget.ImageView;
|
||||
|
||||
public class stations_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__stations_ek2;
|
||||
private View _bg__frame_3_ek1;
|
||||
private View rectangle_51;
|
||||
private TextView _abanpola;
|
||||
private TextView agbopura;
|
||||
private TextView ahungalle;
|
||||
private TextView akurala;
|
||||
private TextView alawwa;
|
||||
private TextView alawathupitiya;
|
||||
private TextView aluthgama;
|
||||
private TextView ambalangoda;
|
||||
private TextView ambepussa;
|
||||
private TextView aluthgama_ek1;
|
||||
private TextView badulla;
|
||||
private TextView balapitiya;
|
||||
private TextView babarenda;
|
||||
private TextView bambalapitiya;
|
||||
private TextView bandarawela;
|
||||
private TextView bangadeniya;
|
||||
private TextView batticaloa;
|
||||
private TextView batuwatta;
|
||||
private TextView chavakachcheri;
|
||||
private TextView _colombo_fort;
|
||||
private TextView a;
|
||||
private TextView b;
|
||||
private TextView c;
|
||||
private View _home_indicator;
|
||||
private View rectangle_52;
|
||||
private TextView _stations_ek3;
|
||||
private ImageView _vector;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
private View _bg__group_31_ek1;
|
||||
private View rectangle_40;
|
||||
private TextView search___;
|
||||
private View _bg__fe_search_ek1;
|
||||
private ImageView vector_ek1;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.stations);
|
||||
|
||||
|
||||
_bg__stations_ek2 = (View) findViewById(R.id._bg__stations_ek2);
|
||||
_bg__frame_3_ek1 = (View) findViewById(R.id._bg__frame_3_ek1);
|
||||
rectangle_51 = (View) findViewById(R.id.rectangle_51);
|
||||
_abanpola = (TextView) findViewById(R.id._abanpola);
|
||||
agbopura = (TextView) findViewById(R.id.agbopura);
|
||||
ahungalle = (TextView) findViewById(R.id.ahungalle);
|
||||
akurala = (TextView) findViewById(R.id.akurala);
|
||||
alawwa = (TextView) findViewById(R.id.alawwa);
|
||||
alawathupitiya = (TextView) findViewById(R.id.alawathupitiya);
|
||||
aluthgama = (TextView) findViewById(R.id.aluthgama);
|
||||
ambalangoda = (TextView) findViewById(R.id.ambalangoda);
|
||||
ambepussa = (TextView) findViewById(R.id.ambepussa);
|
||||
aluthgama_ek1 = (TextView) findViewById(R.id.aluthgama_ek1);
|
||||
badulla = (TextView) findViewById(R.id.badulla);
|
||||
balapitiya = (TextView) findViewById(R.id.balapitiya);
|
||||
babarenda = (TextView) findViewById(R.id.babarenda);
|
||||
bambalapitiya = (TextView) findViewById(R.id.bambalapitiya);
|
||||
bandarawela = (TextView) findViewById(R.id.bandarawela);
|
||||
bangadeniya = (TextView) findViewById(R.id.bangadeniya);
|
||||
batticaloa = (TextView) findViewById(R.id.batticaloa);
|
||||
batuwatta = (TextView) findViewById(R.id.batuwatta);
|
||||
chavakachcheri = (TextView) findViewById(R.id.chavakachcheri);
|
||||
_colombo_fort = (TextView) findViewById(R.id._colombo_fort);
|
||||
a = (TextView) findViewById(R.id.a);
|
||||
b = (TextView) findViewById(R.id.b);
|
||||
c = (TextView) findViewById(R.id.c);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
rectangle_52 = (View) findViewById(R.id.rectangle_52);
|
||||
_stations_ek3 = (TextView) findViewById(R.id._stations_ek3);
|
||||
_vector = (ImageView) findViewById(R.id._vector);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
_bg__group_31_ek1 = (View) findViewById(R.id._bg__group_31_ek1);
|
||||
rectangle_40 = (View) findViewById(R.id.rectangle_40);
|
||||
search___ = (TextView) findViewById(R.id.search___);
|
||||
_bg__fe_search_ek1 = (View) findViewById(R.id._bg__fe_search_ek1);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
|
||||
|
||||
_abanpola.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), station_details_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_colombo_fort.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), station_details_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_stations_ek3.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), home_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_vector.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), home_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,159 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:24:42 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.content.Intent;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class trains_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg__trains_ek2;
|
||||
private ImageView rectangle_43;
|
||||
private View _home_indicator;
|
||||
private View _home_indicator_ek1;
|
||||
private View rectangle_38;
|
||||
private TextView victoria;
|
||||
private TextView sidi_gaber;
|
||||
private TextView from;
|
||||
private TextView to;
|
||||
private ImageView line_15;
|
||||
private View _bg__carbon_train_ek1;
|
||||
private ImageView vector;
|
||||
private TextView estimated_destination_time;
|
||||
private View rectangle_47;
|
||||
private View rectangle_48;
|
||||
private View rectangle_49;
|
||||
private View rectangle_50;
|
||||
private TextView sidi_gaber_ek1;
|
||||
private TextView arrival_in_31mins;
|
||||
private View _bg__fluent_people_queue_20_filled_ek1;
|
||||
private ImageView vector_ek1;
|
||||
private View ellipse_15;
|
||||
private View _bg___group_32_ek1;
|
||||
private View rectangle_46;
|
||||
private View _bg__carbon_train_ek3;
|
||||
private ImageView vector_ek2;
|
||||
private TextView arrival_time_;
|
||||
private TextView victoria_ek1;
|
||||
private TextView predicted_time;
|
||||
private View _bg__fluent_people_queue_20_filled_ek3;
|
||||
private ImageView vector_ek3;
|
||||
private View ellipse_14;
|
||||
private ImageView vector_ek4;
|
||||
private ImageView vector_ek5;
|
||||
private View _bg___eva_arrow_ios_back_fill_ek1;
|
||||
private ImageView vector_ek6;
|
||||
private ImageView rectangle;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private ImageView wifi;
|
||||
private View _bg____battery_ek1;
|
||||
private ImageView fill;
|
||||
private ImageView outline;
|
||||
private ImageView reception;
|
||||
private TextView time;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.trains);
|
||||
|
||||
|
||||
_bg__trains_ek2 = (View) findViewById(R.id._bg__trains_ek2);
|
||||
rectangle_43 = (ImageView) findViewById(R.id.rectangle_43);
|
||||
_home_indicator = (View) findViewById(R.id._home_indicator);
|
||||
_home_indicator_ek1 = (View) findViewById(R.id._home_indicator_ek1);
|
||||
rectangle_38 = (View) findViewById(R.id.rectangle_38);
|
||||
victoria = (TextView) findViewById(R.id.victoria);
|
||||
sidi_gaber = (TextView) findViewById(R.id.sidi_gaber);
|
||||
from = (TextView) findViewById(R.id.from);
|
||||
to = (TextView) findViewById(R.id.to);
|
||||
line_15 = (ImageView) findViewById(R.id.line_15);
|
||||
_bg__carbon_train_ek1 = (View) findViewById(R.id._bg__carbon_train_ek1);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
estimated_destination_time = (TextView) findViewById(R.id.estimated_destination_time);
|
||||
rectangle_47 = (View) findViewById(R.id.rectangle_47);
|
||||
rectangle_48 = (View) findViewById(R.id.rectangle_48);
|
||||
rectangle_49 = (View) findViewById(R.id.rectangle_49);
|
||||
rectangle_50 = (View) findViewById(R.id.rectangle_50);
|
||||
sidi_gaber_ek1 = (TextView) findViewById(R.id.sidi_gaber_ek1);
|
||||
arrival_in_31mins = (TextView) findViewById(R.id.arrival_in_31mins);
|
||||
_bg__fluent_people_queue_20_filled_ek1 = (View) findViewById(R.id._bg__fluent_people_queue_20_filled_ek1);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
ellipse_15 = (View) findViewById(R.id.ellipse_15);
|
||||
_bg___group_32_ek1 = (View) findViewById(R.id._bg___group_32_ek1);
|
||||
rectangle_46 = (View) findViewById(R.id.rectangle_46);
|
||||
_bg__carbon_train_ek3 = (View) findViewById(R.id._bg__carbon_train_ek3);
|
||||
vector_ek2 = (ImageView) findViewById(R.id.vector_ek2);
|
||||
arrival_time_ = (TextView) findViewById(R.id.arrival_time_);
|
||||
victoria_ek1 = (TextView) findViewById(R.id.victoria_ek1);
|
||||
predicted_time = (TextView) findViewById(R.id.predicted_time);
|
||||
_bg__fluent_people_queue_20_filled_ek3 = (View) findViewById(R.id._bg__fluent_people_queue_20_filled_ek3);
|
||||
vector_ek3 = (ImageView) findViewById(R.id.vector_ek3);
|
||||
ellipse_14 = (View) findViewById(R.id.ellipse_14);
|
||||
vector_ek4 = (ImageView) findViewById(R.id.vector_ek4);
|
||||
vector_ek5 = (ImageView) findViewById(R.id.vector_ek5);
|
||||
_bg___eva_arrow_ios_back_fill_ek1 = (View) findViewById(R.id._bg___eva_arrow_ios_back_fill_ek1);
|
||||
vector_ek6 = (ImageView) findViewById(R.id.vector_ek6);
|
||||
rectangle = (ImageView) findViewById(R.id.rectangle);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
_bg____battery_ek1 = (View) findViewById(R.id._bg____battery_ek1);
|
||||
fill = (ImageView) findViewById(R.id.fill);
|
||||
outline = (ImageView) findViewById(R.id.outline);
|
||||
reception = (ImageView) findViewById(R.id.reception);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
|
||||
|
||||
_home_indicator.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_home_indicator_ek1.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), begin_activity.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,236 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file bxs_wallet
|
||||
* @date Saturday 28th of October 2023 06:29:56 AM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class trips_activity extends Activity {
|
||||
|
||||
|
||||
private View _bg___trips_ek2;
|
||||
private View _bg__group_17_ek1;
|
||||
private View rectangle_5;
|
||||
private View _bg__frame_ek1;
|
||||
private ImageView subtract;
|
||||
private TextView hurstbridge_line;
|
||||
private TextView _12_15_pm___1_19_pm;
|
||||
private TextView _1_hr_4_min;
|
||||
private TextView from_eltham_station;
|
||||
private View _bg__frame_ek3;
|
||||
private ImageView vector;
|
||||
private TextView to_melbourne_central_station;
|
||||
private View _bg__frame_ek5;
|
||||
private ImageView vector_ek1;
|
||||
private View _bg__group_15_ek1;
|
||||
private View rectangle_5_ek1;
|
||||
private View _bg__frame_ek7;
|
||||
private ImageView subtract_ek1;
|
||||
private TextView hurstbridge_line_ek1;
|
||||
private TextView _12_15_pm___1_19_pm_ek1;
|
||||
private TextView _1_hr_4_min_ek1;
|
||||
private TextView from_eltham_station_ek1;
|
||||
private View _bg__frame_ek9;
|
||||
private ImageView vector_ek2;
|
||||
private TextView to_melbourne_central_station_ek1;
|
||||
private View _bg__frame_ek11;
|
||||
private ImageView vector_ek3;
|
||||
private ImageView header;
|
||||
private View _bg__iphone_status_bar_ek1;
|
||||
private View _bg__battery_ek1;
|
||||
private View border;
|
||||
private ImageView cap;
|
||||
private View capacity;
|
||||
private ImageView wifi;
|
||||
private ImageView cellular_connection;
|
||||
private View _bg__time_style_ek1;
|
||||
private TextView time;
|
||||
private View _bg__bars_home_indicator_ek1;
|
||||
private View home_indicator;
|
||||
private View _bg__group_15_ek3;
|
||||
private View rectangle_5_ek2;
|
||||
private View _bg__frame_ek13;
|
||||
private ImageView subtract_ek2;
|
||||
private TextView hurstbridge_line_ek2;
|
||||
private TextView _12_15_pm___1_19_pm_ek2;
|
||||
private TextView _1_hr_4_min_ek2;
|
||||
private TextView from_victoria;
|
||||
private View _bg__frame_ek15;
|
||||
private ImageView vector_ek4;
|
||||
private TextView to_melbourne_central_station_ek2;
|
||||
private View _bg__frame_ek17;
|
||||
private ImageView vector_ek5;
|
||||
private View _bg__group_16_ek1;
|
||||
private View rectangle_5_ek3;
|
||||
private View _bg__frame_ek19;
|
||||
private ImageView subtract_ek3;
|
||||
private TextView hurstbridge_line_ek3;
|
||||
private TextView _12_15_pm___1_19_pm_ek3;
|
||||
private TextView _1_hr_4_min_ek3;
|
||||
private TextView from_eltham_station_ek2;
|
||||
private View _bg__frame_ek21;
|
||||
private ImageView vector_ek6;
|
||||
private TextView to_melbourne_central_station_ek3;
|
||||
private View _bg__frame_ek23;
|
||||
private ImageView vector_ek7;
|
||||
private View _bg__group_15_ek5;
|
||||
private View rectangle_5_ek4;
|
||||
private View _bg__frame_ek25;
|
||||
private ImageView subtract_ek4;
|
||||
private TextView hurstbridge_line_ek4;
|
||||
private TextView _12_15_pm___1_19_pm_ek4;
|
||||
private TextView _1_hr_4_min_ek4;
|
||||
private TextView from_eltham_station_ek3;
|
||||
private View _bg__frame_ek27;
|
||||
private ImageView vector_ek8;
|
||||
private TextView to_melbourne_central_station_ek4;
|
||||
private View _bg__frame_ek29;
|
||||
private ImageView vector_ek9;
|
||||
private View _bg__filter_bar_ek1;
|
||||
private View _bg__button_1_ek1;
|
||||
private View _bg__frame_ek31;
|
||||
private ImageView vector_ek10;
|
||||
private View _bg__group_18_ek1;
|
||||
private View rectangle_5_ek5;
|
||||
private View _bg__frame_ek33;
|
||||
private ImageView subtract_ek5;
|
||||
private TextView hurstbridge_line_ek5;
|
||||
private TextView _12_15_pm___1_19_pm_ek5;
|
||||
private TextView _1_hr_4_min_ek5;
|
||||
private TextView from_eltham_station_ek4;
|
||||
private View _bg__frame_ek35;
|
||||
private ImageView vector_ek11;
|
||||
private TextView to_melbourne_central_station_ek5;
|
||||
private View _bg__frame_ek37;
|
||||
private ImageView vector_ek12;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.trips);
|
||||
|
||||
|
||||
_bg___trips_ek2 = (View) findViewById(R.id._bg___trips_ek2);
|
||||
_bg__group_17_ek1 = (View) findViewById(R.id._bg__group_17_ek1);
|
||||
rectangle_5 = (View) findViewById(R.id.rectangle_5);
|
||||
_bg__frame_ek1 = (View) findViewById(R.id._bg__frame_ek1);
|
||||
subtract = (ImageView) findViewById(R.id.subtract);
|
||||
hurstbridge_line = (TextView) findViewById(R.id.hurstbridge_line);
|
||||
_12_15_pm___1_19_pm = (TextView) findViewById(R.id._12_15_pm___1_19_pm);
|
||||
_1_hr_4_min = (TextView) findViewById(R.id._1_hr_4_min);
|
||||
from_eltham_station = (TextView) findViewById(R.id.from_eltham_station);
|
||||
_bg__frame_ek3 = (View) findViewById(R.id._bg__frame_ek3);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
to_melbourne_central_station = (TextView) findViewById(R.id.to_melbourne_central_station);
|
||||
_bg__frame_ek5 = (View) findViewById(R.id._bg__frame_ek5);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
_bg__group_15_ek1 = (View) findViewById(R.id._bg__group_15_ek1);
|
||||
rectangle_5_ek1 = (View) findViewById(R.id.rectangle_5_ek1);
|
||||
_bg__frame_ek7 = (View) findViewById(R.id._bg__frame_ek7);
|
||||
subtract_ek1 = (ImageView) findViewById(R.id.subtract_ek1);
|
||||
hurstbridge_line_ek1 = (TextView) findViewById(R.id.hurstbridge_line_ek1);
|
||||
_12_15_pm___1_19_pm_ek1 = (TextView) findViewById(R.id._12_15_pm___1_19_pm_ek1);
|
||||
_1_hr_4_min_ek1 = (TextView) findViewById(R.id._1_hr_4_min_ek1);
|
||||
from_eltham_station_ek1 = (TextView) findViewById(R.id.from_eltham_station_ek1);
|
||||
_bg__frame_ek9 = (View) findViewById(R.id._bg__frame_ek9);
|
||||
vector_ek2 = (ImageView) findViewById(R.id.vector_ek2);
|
||||
to_melbourne_central_station_ek1 = (TextView) findViewById(R.id.to_melbourne_central_station_ek1);
|
||||
_bg__frame_ek11 = (View) findViewById(R.id._bg__frame_ek11);
|
||||
vector_ek3 = (ImageView) findViewById(R.id.vector_ek3);
|
||||
header = (ImageView) findViewById(R.id.header);
|
||||
_bg__iphone_status_bar_ek1 = (View) findViewById(R.id._bg__iphone_status_bar_ek1);
|
||||
_bg__battery_ek1 = (View) findViewById(R.id._bg__battery_ek1);
|
||||
border = (View) findViewById(R.id.border);
|
||||
cap = (ImageView) findViewById(R.id.cap);
|
||||
capacity = (View) findViewById(R.id.capacity);
|
||||
wifi = (ImageView) findViewById(R.id.wifi);
|
||||
cellular_connection = (ImageView) findViewById(R.id.cellular_connection);
|
||||
_bg__time_style_ek1 = (View) findViewById(R.id._bg__time_style_ek1);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
_bg__bars_home_indicator_ek1 = (View) findViewById(R.id._bg__bars_home_indicator_ek1);
|
||||
home_indicator = (View) findViewById(R.id.home_indicator);
|
||||
_bg__group_15_ek3 = (View) findViewById(R.id._bg__group_15_ek3);
|
||||
rectangle_5_ek2 = (View) findViewById(R.id.rectangle_5_ek2);
|
||||
_bg__frame_ek13 = (View) findViewById(R.id._bg__frame_ek13);
|
||||
subtract_ek2 = (ImageView) findViewById(R.id.subtract_ek2);
|
||||
hurstbridge_line_ek2 = (TextView) findViewById(R.id.hurstbridge_line_ek2);
|
||||
_12_15_pm___1_19_pm_ek2 = (TextView) findViewById(R.id._12_15_pm___1_19_pm_ek2);
|
||||
_1_hr_4_min_ek2 = (TextView) findViewById(R.id._1_hr_4_min_ek2);
|
||||
from_victoria = (TextView) findViewById(R.id.from_victoria);
|
||||
_bg__frame_ek15 = (View) findViewById(R.id._bg__frame_ek15);
|
||||
vector_ek4 = (ImageView) findViewById(R.id.vector_ek4);
|
||||
to_melbourne_central_station_ek2 = (TextView) findViewById(R.id.to_melbourne_central_station_ek2);
|
||||
_bg__frame_ek17 = (View) findViewById(R.id._bg__frame_ek17);
|
||||
vector_ek5 = (ImageView) findViewById(R.id.vector_ek5);
|
||||
_bg__group_16_ek1 = (View) findViewById(R.id._bg__group_16_ek1);
|
||||
rectangle_5_ek3 = (View) findViewById(R.id.rectangle_5_ek3);
|
||||
_bg__frame_ek19 = (View) findViewById(R.id._bg__frame_ek19);
|
||||
subtract_ek3 = (ImageView) findViewById(R.id.subtract_ek3);
|
||||
hurstbridge_line_ek3 = (TextView) findViewById(R.id.hurstbridge_line_ek3);
|
||||
_12_15_pm___1_19_pm_ek3 = (TextView) findViewById(R.id._12_15_pm___1_19_pm_ek3);
|
||||
_1_hr_4_min_ek3 = (TextView) findViewById(R.id._1_hr_4_min_ek3);
|
||||
from_eltham_station_ek2 = (TextView) findViewById(R.id.from_eltham_station_ek2);
|
||||
_bg__frame_ek21 = (View) findViewById(R.id._bg__frame_ek21);
|
||||
vector_ek6 = (ImageView) findViewById(R.id.vector_ek6);
|
||||
to_melbourne_central_station_ek3 = (TextView) findViewById(R.id.to_melbourne_central_station_ek3);
|
||||
_bg__frame_ek23 = (View) findViewById(R.id._bg__frame_ek23);
|
||||
vector_ek7 = (ImageView) findViewById(R.id.vector_ek7);
|
||||
_bg__group_15_ek5 = (View) findViewById(R.id._bg__group_15_ek5);
|
||||
rectangle_5_ek4 = (View) findViewById(R.id.rectangle_5_ek4);
|
||||
_bg__frame_ek25 = (View) findViewById(R.id._bg__frame_ek25);
|
||||
subtract_ek4 = (ImageView) findViewById(R.id.subtract_ek4);
|
||||
hurstbridge_line_ek4 = (TextView) findViewById(R.id.hurstbridge_line_ek4);
|
||||
_12_15_pm___1_19_pm_ek4 = (TextView) findViewById(R.id._12_15_pm___1_19_pm_ek4);
|
||||
_1_hr_4_min_ek4 = (TextView) findViewById(R.id._1_hr_4_min_ek4);
|
||||
from_eltham_station_ek3 = (TextView) findViewById(R.id.from_eltham_station_ek3);
|
||||
_bg__frame_ek27 = (View) findViewById(R.id._bg__frame_ek27);
|
||||
vector_ek8 = (ImageView) findViewById(R.id.vector_ek8);
|
||||
to_melbourne_central_station_ek4 = (TextView) findViewById(R.id.to_melbourne_central_station_ek4);
|
||||
_bg__frame_ek29 = (View) findViewById(R.id._bg__frame_ek29);
|
||||
vector_ek9 = (ImageView) findViewById(R.id.vector_ek9);
|
||||
_bg__filter_bar_ek1 = (View) findViewById(R.id._bg__filter_bar_ek1);
|
||||
_bg__button_1_ek1 = (View) findViewById(R.id._bg__button_1_ek1);
|
||||
_bg__frame_ek31 = (View) findViewById(R.id._bg__frame_ek31);
|
||||
vector_ek10 = (ImageView) findViewById(R.id.vector_ek10);
|
||||
_bg__group_18_ek1 = (View) findViewById(R.id._bg__group_18_ek1);
|
||||
rectangle_5_ek5 = (View) findViewById(R.id.rectangle_5_ek5);
|
||||
_bg__frame_ek33 = (View) findViewById(R.id._bg__frame_ek33);
|
||||
subtract_ek5 = (ImageView) findViewById(R.id.subtract_ek5);
|
||||
hurstbridge_line_ek5 = (TextView) findViewById(R.id.hurstbridge_line_ek5);
|
||||
_12_15_pm___1_19_pm_ek5 = (TextView) findViewById(R.id._12_15_pm___1_19_pm_ek5);
|
||||
_1_hr_4_min_ek5 = (TextView) findViewById(R.id._1_hr_4_min_ek5);
|
||||
from_eltham_station_ek4 = (TextView) findViewById(R.id.from_eltham_station_ek4);
|
||||
_bg__frame_ek35 = (View) findViewById(R.id._bg__frame_ek35);
|
||||
vector_ek11 = (ImageView) findViewById(R.id.vector_ek11);
|
||||
to_melbourne_central_station_ek5 = (TextView) findViewById(R.id.to_melbourne_central_station_ek5);
|
||||
_bg__frame_ek37 = (View) findViewById(R.id._bg__frame_ek37);
|
||||
vector_ek12 = (ImageView) findViewById(R.id.vector_ek12);
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg______icon__route__ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg____battery_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___eva_arrow_ios_back_fill_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___eva_menu_outline_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_12_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_14_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_15_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_16_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_19_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_21_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_22_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_24_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___group_32_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_home_indicator_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___trips_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___trips_ek2_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__akar_icons_share_box_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__akar_icons_share_box_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__ant_design_user_add_outlined_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__bars_home_indicator_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__battery_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__begin_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__begin_ek2_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__button_1_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__carbon_train_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_home_indicator_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__carbon_train_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_home_indicator_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__fe_search_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__frame_3_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__filter_bar_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/rectangle_5_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__fluent_people_queue_20_filled_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_home_indicator_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__fluent_people_queue_20_filled_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_home_indicator_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_3_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__frame_3_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_4_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__akar_icons_share_box_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek11 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek13 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek15 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek17 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek19 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek21 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek23 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek25 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek27 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek29 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek31 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek33 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek35 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek37 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek5 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek7 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__frame_ek9 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__getinh_started_2_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__getinh_started_2_ek2_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__getinh_started_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__getinh_started_ek2_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_10_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_11_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_12_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_13221_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_13222_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_13223_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_13224_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_13225_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_13226_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_13_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_15_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_15_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_15_ek5 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_16_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_17_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_18_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__group_17_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_23_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_31_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__frame_3_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__group_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__healthicons_i_schedule_school_date_time_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__heroicons_solid_speakerphone_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__heroicons_solid_speakerphone_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__heroicons_solid_speakerphone_ek5 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__home_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__home_ek2_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__ic_sharp_notifications_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__iphone_status_bar_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__login_page_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__login_page_ek2_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__map_train_station_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user