final ui code
3
MyApp_1/.idea/.gitignore
generated
vendored
@@ -1,3 +0,0 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
6
MyApp_1/.idea/compiler.xml
generated
@@ -1,6 +0,0 @@
|
||||
<?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
@@ -1,20 +0,0 @@
|
||||
<?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
@@ -1,9 +0,0 @@
|
||||
<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>
|
||||
@@ -33,6 +33,7 @@ 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")
|
||||
|
||||
@@ -2,16 +2,23 @@
|
||||
<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" >
|
||||
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:configChanges="orientation|keyboardHidden|screenSize"
|
||||
android:label="@string/app_name"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
@@ -19,20 +26,13 @@
|
||||
</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>
|
||||
<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>
|
||||
|
||||
|
||||
131
MyApp_1/app/src/main/java/com/example/myapp_1/Menu.java
Normal file
@@ -0,0 +1,131 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,24 +18,31 @@
|
||||
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
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.begin);
|
||||
|
||||
|
||||
|
||||
|
||||
//custom code goes here
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -62,13 +62,6 @@ public class getinh_started_2_activity extends Activity {
|
||||
|
||||
_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_);
|
||||
@@ -96,12 +89,19 @@ public class getinh_started_2_activity extends Activity {
|
||||
}
|
||||
});
|
||||
|
||||
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(), home_activity.class);
|
||||
Intent nextScreen = new Intent(getApplicationContext(),home2.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
|
||||
@@ -62,30 +62,20 @@ public class getinh_started_activity extends Activity {
|
||||
|
||||
_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() {
|
||||
skip.setOnClickListener(new View.OnClickListener() {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
@@ -95,20 +85,6 @@ public class getinh_started_activity extends Activity {
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
_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) {
|
||||
|
||||
88
MyApp_1/app/src/main/java/com/example/myapp_1/home2.java
Normal file
@@ -0,0 +1,88 @@
|
||||
|
||||
|
||||
/*
|
||||
* 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,160 +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: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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -41,13 +41,6 @@ public class login_page_activity extends Activity {
|
||||
_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);
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
package com.example.myapp_1;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
@@ -80,6 +81,7 @@ public class notifications_activity extends Activity {
|
||||
private ImageView vector_ek6;
|
||||
private View ellipse_22;
|
||||
|
||||
@SuppressLint("MissingInflatedId")
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
@@ -88,13 +90,6 @@ public class notifications_activity extends Activity {
|
||||
|
||||
|
||||
_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);
|
||||
@@ -109,14 +104,10 @@ public class notifications_activity extends Activity {
|
||||
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);
|
||||
@@ -138,27 +129,26 @@ public class notifications_activity extends Activity {
|
||||
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);
|
||||
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);
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -58,13 +58,6 @@ public class pw_reset_activity extends Activity {
|
||||
|
||||
_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);
|
||||
|
||||
@@ -80,13 +80,6 @@ public class schedule_activity extends Activity {
|
||||
|
||||
|
||||
_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);
|
||||
@@ -127,7 +120,7 @@ public class schedule_activity extends Activity {
|
||||
|
||||
public void onClick(View v) {
|
||||
|
||||
Intent nextScreen = new Intent(getApplicationContext(), home_activity.class);
|
||||
Intent nextScreen = new Intent(getApplicationContext(), home2.class);
|
||||
startActivity(nextScreen);
|
||||
|
||||
|
||||
|
||||
@@ -66,13 +66,6 @@ public class sign_in_activity extends Activity {
|
||||
|
||||
|
||||
_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);
|
||||
|
||||
@@ -1,147 +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: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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,191 +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: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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,159 +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: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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
152
MyApp_1/app/src/main/java/com/example/myapp_1/trips.java
Normal file
@@ -0,0 +1,152 @@
|
||||
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,236 +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: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___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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
<!-- _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" />
|
||||
<solid android:color="@color/_bg__iphone_status_bar_ek1_color" />
|
||||
</shape>
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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__side_bar_icon_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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__side_bar_icon_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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__side_bar_icon_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__home_train_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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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__side_bar_icon_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__notification_icon_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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__schedule_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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__schedule_icon_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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__side_bar_icon_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__side_bar_icon_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__train_icon_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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_filter_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/tripa_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_ek11 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_ek13 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_ek15 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_ek5 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_ek7 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_ek9 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_location_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_location_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_location_ek5 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_frame_a_icon_location_ek7 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_icon_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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_parta_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_parta_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_parta_ek5 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_parta_ek7 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_sort_button_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- _bg__trip_sort_frame_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/_bg__trip_parta_ek1_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- arrival_background from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/arrival_background_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- arrival_vector_ellipse from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval" >
|
||||
<solid android:color="@color/_bg__trains_ek2_color" />
|
||||
</shape>
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
<!-- ellipse_11 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval" >
|
||||
<solid android:color="@color/ellipse_11_color" />
|
||||
<solid android:color="@color/ellipse_7_color" />
|
||||
</shape>
|
||||
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
<!-- ellipse_12 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval" >
|
||||
<solid android:color="@color/_bg__getinh_started_ek2_color" />
|
||||
<solid android:color="@color/ellipse_7_color" />
|
||||
</shape>
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- notification_icon_ellipse from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval" >
|
||||
<solid android:color="@color/trip_icon_ellipse_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- schedule_icon_ellipse from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval" >
|
||||
<solid android:color="@color/trip_icon_ellipse_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- side_bar_blue_frame from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<solid android:color="@color/side_bar_blue_frame_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- side_bar_white_frame 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>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- station_icon_ellipse from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval" >
|
||||
<solid android:color="@color/trip_icon_ellipse_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- train_icon_ellipse_ from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval" >
|
||||
<solid android:color="@color/trip_icon_ellipse_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- trip_icon_ellipse from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval" >
|
||||
<solid android:color="@color/trip_icon_ellipse_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- tripa_ek1 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<corners android:radius="6dp" />
|
||||
<solid android:color="@color/tripa_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- tripa_ek2 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<corners android:radius="6dp" />
|
||||
<solid android:color="@color/tripa_color" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- tripa_ek3 from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<corners android:radius="6dp" />
|
||||
<solid android:color="@color/tripa_color" />
|
||||
</shape>
|
||||
|
||||
8
MyApp_1/app/src/main/res/drawable-nodpi/tripa_shape.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- tripa from your XD file. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<corners android:radius="6dp" />
|
||||
<solid android:color="@color/tripa_color" />
|
||||
</shape>
|
||||
|
||||
BIN
MyApp_1/app/src/main/res/drawable/arrival_carton_icon.png
Normal file
|
After Width: | Height: | Size: 342 B |
BIN
MyApp_1/app/src/main/res/drawable/arrival_vector.png
Normal file
|
After Width: | Height: | Size: 347 B |
BIN
MyApp_1/app/src/main/res/drawable/arrval_bus_icon.png
Normal file
|
After Width: | Height: | Size: 543 B |
|
Before Width: | Height: | Size: 188 B After Width: | Height: | Size: 175 B |
BIN
MyApp_1/app/src/main/res/drawable/header.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
MyApp_1/app/src/main/res/drawable/image_5.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
MyApp_1/app/src/main/res/drawable/location.png
Normal file
|
After Width: | Height: | Size: 382 B |
BIN
MyApp_1/app/src/main/res/drawable/menu_vector_1.png
Normal file
|
After Width: | Height: | Size: 213 B |
BIN
MyApp_1/app/src/main/res/drawable/menu_vector_2.png
Normal file
|
After Width: | Height: | Size: 212 B |
BIN
MyApp_1/app/src/main/res/drawable/menu_vector_3.png
Normal file
|
After Width: | Height: | Size: 223 B |
BIN
MyApp_1/app/src/main/res/drawable/notification_icon_ek2.png
Normal file
|
After Width: | Height: | Size: 543 B |
|
Before Width: | Height: | Size: 293 B After Width: | Height: | Size: 272 B |
BIN
MyApp_1/app/src/main/res/drawable/part1_cal.png
Normal file
|
After Width: | Height: | Size: 208 B |
BIN
MyApp_1/app/src/main/res/drawable/part2_cal.png
Normal file
|
After Width: | Height: | Size: 156 B |
BIN
MyApp_1/app/src/main/res/drawable/part3_cal.png
Normal file
|
After Width: | Height: | Size: 315 B |
BIN
MyApp_1/app/src/main/res/drawable/part4_cal.png
Normal file
|
After Width: | Height: | Size: 435 B |
BIN
MyApp_1/app/src/main/res/drawable/part5_cal.png
Normal file
|
After Width: | Height: | Size: 674 B |
BIN
MyApp_1/app/src/main/res/drawable/part6_cal.png
Normal file
|
After Width: | Height: | Size: 471 B |
BIN
MyApp_1/app/src/main/res/drawable/person_icon.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 240 B After Width: | Height: | Size: 226 B |