Commit 2ca0f921 authored by Induwara Ekanayake's avatar Induwara Ekanayake

Created Insurance view

parent 9e02909e
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="false" project-jdk-name="11" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="11" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">
......
...@@ -15,7 +15,8 @@ ...@@ -15,7 +15,8 @@
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/Theme.SmartServiceAssistant"> android:theme="@style/Theme.SmartServiceAssistant">
<activity android:name=".spareparts.SuggestYoutubeVideos"></activity> <activity android:name=".insurance.insurance_view"></activity>
<activity android:name=".spareparts.SuggestYoutubeVideos" />
<!-- <!--
The API key for Google Maps-based APIs is defined as a string resource. The API key for Google Maps-based APIs is defined as a string resource.
(See the file "res/values/google_maps_api.xml"). (See the file "res/values/google_maps_api.xml").
......
...@@ -3,6 +3,7 @@ package com.sliit.smartserviceassistant.insurance; ...@@ -3,6 +3,7 @@ package com.sliit.smartserviceassistant.insurance;
import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle; import android.os.Bundle;
import android.view.View;
import com.sliit.smartserviceassistant.R; import com.sliit.smartserviceassistant.R;
...@@ -13,4 +14,7 @@ public class InsuranceMainActivity extends AppCompatActivity { ...@@ -13,4 +14,7 @@ public class InsuranceMainActivity extends AppCompatActivity {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
setContentView(R.layout.activity_insurance_main); setContentView(R.layout.activity_insurance_main);
} }
public void view(View view) {
}
} }
\ No newline at end of file
package com.sliit.smartserviceassistant.insurance;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class insurance_view extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_insurance_view2);
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Insurance_view_Activity">
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".insurance.insurance_view">
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
</string-array> </string-array>
<string-array name="MileageRange"> <string-array name="MileageRange">
<item></item> <item></item>
<item>10000</item> <item>10000</item>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment