I am death
This commit is contained in:
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>
|
||||
19
MyApp_1/.idea/gradle.xml
generated
Normal file
19
MyApp_1/.idea/gradle.xml
generated
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<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>
|
||||
10
MyApp_1/.idea/misc.xml
generated
Normal file
10
MyApp_1/.idea/misc.xml
generated
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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>
|
||||
6
MyApp_1/.idea/vcs.xml
generated
Normal file
6
MyApp_1/.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
1
MyApp_1/app/.gitignore
vendored
1
MyApp_1/app/.gitignore
vendored
@@ -1 +0,0 @@
|
||||
/build
|
||||
@@ -1,40 +0,0 @@
|
||||
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")
|
||||
implementation("com.google.android.gms:play-services-maps:18.2.0")
|
||||
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
21
MyApp_1/app/proguard-rules.pro
vendored
@@ -1,21 +0,0 @@
|
||||
# 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
|
||||
@@ -1,26 +0,0 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
@@ -1,38 +0,0 @@
|
||||
<?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:label="@string/app_name"
|
||||
android:theme="@style/AppTheme">
|
||||
<activity
|
||||
android:name=".trips"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".home2"
|
||||
android:exported="false" />
|
||||
|
||||
<activity
|
||||
android:name=".Menu"
|
||||
android:exported="false" />
|
||||
|
||||
<activity
|
||||
android:name=".begin_activity"
|
||||
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=".login_page_activity" />
|
||||
<activity android:name=".pw_reset_activity" />
|
||||
<activity android:name=".sign_in_activity" />
|
||||
<activity android:name=".getinh_started_2_activity" />
|
||||
<activity android:name=".notifications_activity" />
|
||||
<activity android:name=".schedule_activity" />
|
||||
<activity android:name=".getinh_started_activity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
@@ -1,131 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file begin
|
||||
* @date Wednesday 01st of November 2023 05:44:03 PM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class Menu extends Activity {
|
||||
|
||||
|
||||
private View _bg__hamburger_menu_ek2;
|
||||
private View side_bar_white_frame;
|
||||
private View side_bar_blue_frame;
|
||||
private View _bg__side_bar_icon_ek1;
|
||||
private ImageView vector;
|
||||
private ImageView vector_ek1;
|
||||
private TextView name;
|
||||
private TextView trains;
|
||||
private TextView schedule;
|
||||
private TextView stations;
|
||||
private TextView app_version_1_0_0_0;
|
||||
private View _bg__home_station_ek1;
|
||||
private View station_icon_ellipse;
|
||||
private ImageView station_icon;
|
||||
private View _bg__home_notification_ek1;
|
||||
private View notification_icon_ellipse;
|
||||
private View _bg__notification_icon_ek1;
|
||||
private ImageView notification_icon_ek2;
|
||||
private View _bg__home_schedule_ek1;
|
||||
private View schedule_icon_ellipse;
|
||||
private View _bg__schedule_icon_ek1;
|
||||
private View _bg__schedule_group_ek1;
|
||||
private ImageView part6_cal;
|
||||
private ImageView part5_cal;
|
||||
private ImageView part4_cal;
|
||||
private ImageView part3_cal;
|
||||
private ImageView part2_cal;
|
||||
private ImageView part1_cal;
|
||||
private View _bg__home_train_ek1;
|
||||
private View train_icon_ellipse_;
|
||||
private View _bg__train_icon_ek1;
|
||||
private ImageView train_icon_ek2;
|
||||
private View _bg__home_trips_ek1;
|
||||
private View trip_icon_ellipse;
|
||||
private View _bg__trip_icon_ek1;
|
||||
private ImageView trip_icon_ek2;
|
||||
private TextView notification;
|
||||
private TextView trips;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.hamburger_menu);
|
||||
|
||||
side_bar_blue_frame = (View) findViewById(R.id.side_bar_blue_frame);
|
||||
_bg__side_bar_icon_ek1 = (View) findViewById(R.id._bg__side_bar_icon_ek1);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
name = (TextView) findViewById(R.id.name);
|
||||
schedule = (TextView) findViewById(R.id.schedule);
|
||||
app_version_1_0_0_0 = (TextView) findViewById(R.id.app_version_1_0_0_0);
|
||||
notification_icon_ellipse = (View) findViewById(R.id.notification_icon_ellipse);
|
||||
_bg__notification_icon_ek1 = (View) findViewById(R.id._bg__notification_icon_ek1);
|
||||
notification_icon_ek2 = (ImageView) findViewById(R.id.notification_icon_ek2);
|
||||
schedule_icon_ellipse = (View) findViewById(R.id.schedule_icon_ellipse);
|
||||
_bg__schedule_icon_ek1 = (View) findViewById(R.id._bg__schedule_icon_ek1);
|
||||
_bg__schedule_group_ek1 = (View) findViewById(R.id._bg__schedule_group_ek1);
|
||||
part6_cal = (ImageView) findViewById(R.id.part6_cal);
|
||||
part5_cal = (ImageView) findViewById(R.id.part5_cal);
|
||||
part4_cal = (ImageView) findViewById(R.id.part4_cal);
|
||||
part3_cal = (ImageView) findViewById(R.id.part3_cal);
|
||||
part2_cal = (ImageView) findViewById(R.id.part2_cal);
|
||||
part1_cal = (ImageView) findViewById(R.id.part1_cal);
|
||||
trip_icon_ellipse = (View) findViewById(R.id.trip_icon_ellipse);
|
||||
trip_icon_ek2 = (ImageView) findViewById(R.id.trip_icon_ek2);
|
||||
notification = (TextView) findViewById(R.id.notification);
|
||||
trips = (TextView) findViewById(R.id.trips);
|
||||
|
||||
// ...
|
||||
notification_icon_ek2.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
Intent intent = new Intent(Menu.this, notifications_activity.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
|
||||
part4_cal.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
Intent newscreen = new Intent(Menu.this, schedule_activity.class);
|
||||
startActivity(newscreen);
|
||||
}
|
||||
});
|
||||
|
||||
trip_icon_ek2.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(Menu.this, trips.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
// ...
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,49 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.os.Handler;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
|
||||
public class begin_activity extends Activity {
|
||||
|
||||
private static final int SPLASH_DURATION = 3000; // 3 seconds
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.begin);
|
||||
|
||||
new Handler().postDelayed(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
// Start the main activity after the splash duration
|
||||
Intent intent = new Intent(begin_activity.this, getinh_started_activity.class);
|
||||
startActivity(intent);
|
||||
finish(); // Close the splash screen activity
|
||||
}
|
||||
}, SPLASH_DURATION);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,117 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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);
|
||||
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);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
skip.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
Intent nextscreen = new Intent(getApplicationContext(), home2.class);
|
||||
startActivity(nextscreen);
|
||||
}
|
||||
});
|
||||
|
||||
_rectangle_8.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(),home2.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,105 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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);
|
||||
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);
|
||||
skip = (TextView) findViewById(R.id.skip);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
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);
|
||||
get_started = (TextView) findViewById(R.id.get_started);
|
||||
|
||||
|
||||
skip.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), getinh_started_2_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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,88 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* This content is generated from the API File Info.
|
||||
* (Alt+Shift+Ctrl+I).
|
||||
*
|
||||
* @desc
|
||||
* @file begin
|
||||
* @date Wednesday 01st of November 2023 06:23:03 PM
|
||||
* @title Page 1
|
||||
* @author
|
||||
* @keywords
|
||||
* @generator Export Kit v1.3.figma
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.example.myapp_1.Menu;
|
||||
|
||||
public class home2 extends Activity {
|
||||
|
||||
|
||||
private View _bg__choose_ek2;
|
||||
private ImageView train_image;
|
||||
private View _bg__menu_ek1;
|
||||
private ImageView menu_vector_3;
|
||||
private ImageView menu_vector_2;
|
||||
private ImageView menu_vector_1;
|
||||
private TextView good_evening___;
|
||||
private View _bg__arrival_group_ek1;
|
||||
private View _bg__arrival_carton_ek1;
|
||||
private ImageView arrval_bus_icon;
|
||||
private TextView arrival_time_;
|
||||
private TextView victoria;
|
||||
private TextView predicted_time;
|
||||
private View _bg__arrival_carton_ek3;
|
||||
private ImageView arrival_carton_icon;
|
||||
private View arrival_vector_ellipse;
|
||||
private ImageView arrival_vector;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_home3);
|
||||
|
||||
|
||||
_bg__choose_ek2 = (View) findViewById(R.id._bg__choose_ek2);
|
||||
train_image = (ImageView) findViewById(R.id.train_image);
|
||||
_bg__menu_ek1 = (View) findViewById(R.id._bg__menu_ek1);
|
||||
menu_vector_3 = (ImageView) findViewById(R.id.menu_vector_3);
|
||||
menu_vector_2 = (ImageView) findViewById(R.id.menu_vector_2);
|
||||
menu_vector_1 = (ImageView) findViewById(R.id.menu_vector_1);
|
||||
good_evening___ = (TextView) findViewById(R.id.good_evening___);
|
||||
_bg__arrival_group_ek1 = (View) findViewById(R.id._bg__arrival_group_ek1);
|
||||
_bg__arrival_carton_ek1 = (View) findViewById(R.id._bg__arrival_carton_ek1);
|
||||
arrval_bus_icon = (ImageView) findViewById(R.id.arrval_bus_icon);
|
||||
arrival_time_ = (TextView) findViewById(R.id.arrival_time_);
|
||||
victoria = (TextView) findViewById(R.id.victoria);
|
||||
predicted_time = (TextView) findViewById(R.id.predicted_time);
|
||||
_bg__arrival_carton_ek3 = (View) findViewById(R.id._bg__arrival_carton_ek3);
|
||||
arrival_carton_icon = (ImageView) findViewById(R.id.arrival_carton_icon);
|
||||
arrival_vector_ellipse = (View) findViewById(R.id.arrival_vector_ellipse);
|
||||
arrival_vector = (ImageView) findViewById(R.id.arrival_vector);
|
||||
|
||||
_bg__menu_ek1.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(home2.this, Menu.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
//custom code goes here
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,59 +0,0 @@
|
||||
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);
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,161 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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.annotation.SuppressLint;
|
||||
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;
|
||||
|
||||
@SuppressLint("MissingInflatedId")
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.notifications);
|
||||
|
||||
|
||||
_bg__notifications_ek2 = (View) findViewById(R.id._bg__notifications_ek2);
|
||||
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);
|
||||
ellipse_20_ek2 = (View) findViewById(R.id.ellipse_20_ek2);
|
||||
ellipse_20_ek3 = (View) findViewById(R.id.ellipse_20_ek3);
|
||||
_bg__heroicons_solid_speakerphone_ek5 = (View) findViewById(R.id._bg__heroicons_solid_speakerphone_ek5);
|
||||
ellipse_20_ek4 = (View) findViewById(R.id.ellipse_20_ek4);
|
||||
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(), home2.class);
|
||||
startActivity(nextScreen);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
vector.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
Intent newscreen = new Intent(getApplicationContext(), home2.class);
|
||||
startActivity(newscreen);
|
||||
}
|
||||
});
|
||||
|
||||
_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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,90 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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);
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,148 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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);
|
||||
_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(), home2.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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,108 +0,0 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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);
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,152 +0,0 @@
|
||||
package com.example.myapp_1;
|
||||
|
||||
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class trips extends Activity {
|
||||
|
||||
|
||||
private View _bg___trips_ek2;
|
||||
private ImageView header;
|
||||
private View _bg__trip_parta_ek1;
|
||||
private View tripa;
|
||||
private View _bg__trip_frame_a_icon_location_ek1;
|
||||
private ImageView location;
|
||||
private TextView hurstbridge_line;
|
||||
private TextView _12_15_pm___1_19_pm;
|
||||
private TextView _1_hr_4_min;
|
||||
private TextView from_victoria;
|
||||
private View _bg__trip_frame_a_icon_ek1;
|
||||
private ImageView vector;
|
||||
private TextView to_melbourne_central_station;
|
||||
private View _bg__trip_frame_a_icon_ek3;
|
||||
private ImageView vector_ek1;
|
||||
private View _bg__trip_parta_ek3;
|
||||
private View tripa_ek1;
|
||||
private View _bg__trip_frame_a_icon_location_ek3;
|
||||
private ImageView location_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_victoria_ek1;
|
||||
private View _bg__trip_frame_a_icon_ek5;
|
||||
private ImageView vector_ek2;
|
||||
private TextView to_melbourne_central_station_ek1;
|
||||
private View _bg__trip_frame_a_icon_ek7;
|
||||
private ImageView vector_ek3;
|
||||
private View _bg__trip_filter_ek1;
|
||||
private View _bg__trip_sort_button_ek1;
|
||||
private View _bg__trip_sort_frame_ek1;
|
||||
private ImageView trip_sort_vector;
|
||||
private View _bg__trip_parta_ek5;
|
||||
private View tripa_ek2;
|
||||
private View _bg__trip_frame_a_icon_location_ek5;
|
||||
private ImageView location_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_ek2;
|
||||
private View _bg__trip_frame_a_icon_ek9;
|
||||
private ImageView vector_ek4;
|
||||
private TextView to_melbourne_central_station_ek2;
|
||||
private View _bg__trip_frame_a_icon_ek11;
|
||||
private ImageView vector_ek5;
|
||||
private View _bg__trip_parta_ek7;
|
||||
private View tripa_ek3;
|
||||
private View _bg__trip_frame_a_icon_location_ek7;
|
||||
private ImageView location_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_victoria_ek3;
|
||||
private View _bg__trip_frame_a_icon_ek13;
|
||||
private ImageView vector_ek6;
|
||||
private TextView to_melbourne_central_station_ek3;
|
||||
private View _bg__trip_frame_a_icon_ek15;
|
||||
private ImageView vector_ek7;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.trips);
|
||||
|
||||
_bg___trips_ek2 = (View) findViewById(R.id._bg___trips_ek2);
|
||||
header = (ImageView) findViewById(R.id.header);
|
||||
_bg__trip_parta_ek1 = (View) findViewById(R.id._bg__trip_parta_ek1);
|
||||
tripa = (View) findViewById(R.id.tripa);
|
||||
_bg__trip_frame_a_icon_location_ek1 = (View) findViewById(R.id._bg__trip_frame_a_icon_location_ek1);
|
||||
location = (ImageView) findViewById(R.id.location);
|
||||
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_victoria = (TextView) findViewById(R.id.from_victoria);
|
||||
_bg__trip_frame_a_icon_ek1 = (View) findViewById(R.id._bg__trip_frame_a_icon_ek1);
|
||||
vector = (ImageView) findViewById(R.id.vector);
|
||||
to_melbourne_central_station = (TextView) findViewById(R.id.to_melbourne_central_station);
|
||||
_bg__trip_frame_a_icon_ek3 = (View) findViewById(R.id._bg__trip_frame_a_icon_ek3);
|
||||
vector_ek1 = (ImageView) findViewById(R.id.vector_ek1);
|
||||
_bg__trip_parta_ek3 = (View) findViewById(R.id._bg__trip_parta_ek3);
|
||||
tripa_ek1 = (View) findViewById(R.id.tripa_ek1);
|
||||
_bg__trip_frame_a_icon_location_ek3 = (View) findViewById(R.id._bg__trip_frame_a_icon_location_ek3);
|
||||
location_ek1 = (ImageView) findViewById(R.id.location_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_victoria_ek1 = (TextView) findViewById(R.id.from_victoria_ek1);
|
||||
_bg__trip_frame_a_icon_ek5 = (View) findViewById(R.id._bg__trip_frame_a_icon_ek5);
|
||||
vector_ek2 = (ImageView) findViewById(R.id.vector_ek2);
|
||||
to_melbourne_central_station_ek1 = (TextView) findViewById(R.id.to_melbourne_central_station_ek1);
|
||||
_bg__trip_frame_a_icon_ek7 = (View) findViewById(R.id._bg__trip_frame_a_icon_ek7);
|
||||
vector_ek3 = (ImageView) findViewById(R.id.vector_ek3);
|
||||
_bg__trip_filter_ek1 = (View) findViewById(R.id._bg__trip_filter_ek1);
|
||||
_bg__trip_sort_button_ek1 = (View) findViewById(R.id._bg__trip_sort_button_ek1);
|
||||
_bg__trip_sort_frame_ek1 = (View) findViewById(R.id._bg__trip_sort_frame_ek1);
|
||||
trip_sort_vector = (ImageView) findViewById(R.id.trip_sort_vector);
|
||||
_bg__trip_parta_ek5 = (View) findViewById(R.id._bg__trip_parta_ek5);
|
||||
tripa_ek2 = (View) findViewById(R.id.tripa_ek2);
|
||||
_bg__trip_frame_a_icon_location_ek5 = (View) findViewById(R.id._bg__trip_frame_a_icon_location_ek5);
|
||||
location_ek2 = (ImageView) findViewById(R.id.location_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_ek2 = (TextView) findViewById(R.id.from_victoria_ek2);
|
||||
_bg__trip_frame_a_icon_ek9 = (View) findViewById(R.id._bg__trip_frame_a_icon_ek9);
|
||||
vector_ek4 = (ImageView) findViewById(R.id.vector_ek4);
|
||||
to_melbourne_central_station_ek2 = (TextView) findViewById(R.id.to_melbourne_central_station_ek2);
|
||||
_bg__trip_frame_a_icon_ek11 = (View) findViewById(R.id._bg__trip_frame_a_icon_ek11);
|
||||
vector_ek5 = (ImageView) findViewById(R.id.vector_ek5);
|
||||
_bg__trip_parta_ek7 = (View) findViewById(R.id._bg__trip_parta_ek7);
|
||||
tripa_ek3 = (View) findViewById(R.id.tripa_ek3);
|
||||
_bg__trip_frame_a_icon_location_ek7 = (View) findViewById(R.id._bg__trip_frame_a_icon_location_ek7);
|
||||
location_ek3 = (ImageView) findViewById(R.id.location_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_victoria_ek3 = (TextView) findViewById(R.id.from_victoria_ek3);
|
||||
_bg__trip_frame_a_icon_ek13 = (View) findViewById(R.id._bg__trip_frame_a_icon_ek13);
|
||||
vector_ek6 = (ImageView) findViewById(R.id.vector_ek6);
|
||||
to_melbourne_central_station_ek3 = (TextView) findViewById(R.id.to_melbourne_central_station_ek3);
|
||||
_bg__trip_frame_a_icon_ek15 = (View) findViewById(R.id._bg__trip_frame_a_icon_ek15);
|
||||
vector_ek7 = (ImageView) findViewById(R.id.vector_ek7);
|
||||
|
||||
|
||||
header.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(trips.this, home2.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___arrival_group_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___arrival_group_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___home_notification_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___menu_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___home_schedule_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___menu_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___home_station_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___menu_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___home_trips_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___menu_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg___menu_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___menu_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__arrival_carton_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___arrival_group_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__arrival_carton_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg___arrival_group_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__arrival_group_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__menu_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__choose_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__choose_ek2_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__hamburger_menu_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__hamburger_menu_ek2_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