Finalized Usage activity
@@ -5,6 +5,7 @@ import androidx.appcompat.app.AppCompatActivity;
|
|||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
|
import android.widget.Button;
|
||||||
import android.widget.ImageView;
|
import android.widget.ImageView;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
@@ -13,6 +14,7 @@ public class Home extends AppCompatActivity {
|
|||||||
String username;
|
String username;
|
||||||
TextView name, usage;
|
TextView name, usage;
|
||||||
ImageView back, setting;
|
ImageView back, setting;
|
||||||
|
Button usageBtn, oasisBtn;
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
@@ -23,8 +25,11 @@ public class Home extends AppCompatActivity {
|
|||||||
usage = findViewById(R.id.textView11);
|
usage = findViewById(R.id.textView11);
|
||||||
back = findViewById(R.id.imageView17);
|
back = findViewById(R.id.imageView17);
|
||||||
setting = findViewById(R.id.imageView18);
|
setting = findViewById(R.id.imageView18);
|
||||||
|
usageBtn = findViewById(R.id.button4);
|
||||||
|
oasisBtn = findViewById(R.id.button5);
|
||||||
logOut();
|
logOut();
|
||||||
startSetting();
|
startSetting();
|
||||||
|
startUsage();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void logOut() {
|
public void logOut() {
|
||||||
@@ -42,4 +47,11 @@ public class Home extends AppCompatActivity {
|
|||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void startUsage() {
|
||||||
|
usageBtn.setOnClickListener(view -> {
|
||||||
|
Intent intent = new Intent(this, Usage.class);
|
||||||
|
startActivity(intent);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -2,13 +2,24 @@ package com.example.electricity;
|
|||||||
|
|
||||||
import androidx.appcompat.app.AppCompatActivity;
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
|
||||||
public class Settings extends AppCompatActivity {
|
public class Settings extends AppCompatActivity {
|
||||||
|
ImageView back;
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
setContentView(R.layout.activity_settings);
|
setContentView(R.layout.activity_settings);
|
||||||
|
back = findViewById(R.id.imageView24);
|
||||||
|
back();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void back() {
|
||||||
|
back.setOnClickListener(view -> {
|
||||||
|
Intent intent = new Intent(this, Home.class);
|
||||||
|
startActivity(intent);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,13 +1,25 @@
|
|||||||
package com.example.electricity;
|
package com.example.electricity;
|
||||||
|
|
||||||
import androidx.appcompat.app.AppCompatActivity;
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
|
||||||
public class Usage extends AppCompatActivity {
|
public class Usage extends AppCompatActivity {
|
||||||
|
ImageView back;
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
setContentView(R.layout.activity_usage);
|
setContentView(R.layout.activity_usage);
|
||||||
|
back = findViewById(R.id.imageView25);
|
||||||
|
back();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void back() {
|
||||||
|
back.setOnClickListener(view -> {
|
||||||
|
Intent intent = new Intent(this, Home.class);
|
||||||
|
startActivity(intent);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
BIN
app/src/main/res/drawable/background.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
app/src/main/res/drawable/group_2584.png
Normal file
|
After Width: | Height: | Size: 130 KiB |
BIN
app/src/main/res/drawable/group_2584__1_.png
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
app/src/main/res/drawable/group_2660.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
app/src/main/res/drawable/group_2660__1_.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
app/src/main/res/drawable/group_2666.png
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
app/src/main/res/drawable/group_2667.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
app/src/main/res/drawable/group_2677.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
app/src/main/res/drawable/pngwing_com.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
@@ -6,6 +6,16 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
tools:context=".Home">
|
tools:context=".Home">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView11"
|
||||||
|
android:layout_width="515dp"
|
||||||
|
android:layout_height="850dp"
|
||||||
|
android:layout_marginTop="60dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView22"
|
||||||
|
app:srcCompat="@drawable/background" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageView4"
|
android:id="@+id/imageView4"
|
||||||
android:layout_width="515dp"
|
android:layout_width="515dp"
|
||||||
@@ -119,7 +129,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="sans-serif-black"
|
android:fontFamily="sans-serif-black"
|
||||||
android:text="3.5 kWh"
|
android:text="20 kWh"
|
||||||
android:textColor="#FFC107"
|
android:textColor="#FFC107"
|
||||||
android:textSize="48sp"
|
android:textSize="48sp"
|
||||||
android:textStyle="bold|italic"
|
android:textStyle="bold|italic"
|
||||||
|
|||||||
@@ -6,4 +6,118 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
tools:context=".Settings">
|
tools:context=".Settings">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView19"
|
||||||
|
android:layout_width="515dp"
|
||||||
|
android:layout_height="364dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
app:layout_constraintVertical_bias="0.0"
|
||||||
|
app:srcCompat="@drawable/rectangle_223" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView21"
|
||||||
|
android:layout_width="515dp"
|
||||||
|
android:layout_height="850dp"
|
||||||
|
android:layout_marginTop="60dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView19"
|
||||||
|
app:srcCompat="@drawable/background" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/button6"
|
||||||
|
android:layout_width="250dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_marginTop="100dp"
|
||||||
|
android:backgroundTint="#4CAF50"
|
||||||
|
android:text="Change Username"
|
||||||
|
android:textAllCaps="false"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.496"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView21"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/button8"
|
||||||
|
android:layout_width="250dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
android:backgroundTint="#4CAF50"
|
||||||
|
android:text="Change Password"
|
||||||
|
android:textAllCaps="false"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.496"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/button6"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/button9"
|
||||||
|
android:layout_width="250dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
android:backgroundTint="#4CAF50"
|
||||||
|
android:text="Change Customer Code"
|
||||||
|
android:textAllCaps="false"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.496"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/button8"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/button10"
|
||||||
|
android:layout_width="250dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
android:backgroundTint="#F44336"
|
||||||
|
android:text="Delete Account"
|
||||||
|
android:textAllCaps="false"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.496"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/button9"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView21"
|
||||||
|
android:layout_width="181dp"
|
||||||
|
android:layout_height="49dp"
|
||||||
|
android:layout_marginStart="30dp"
|
||||||
|
android:text="Settings"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textSize="34sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/imageView24"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.032"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/imageView24"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView24"
|
||||||
|
app:layout_constraintVertical_bias="0.444" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView24"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
app:layout_constraintBottom_toTopOf="@+id/imageView23"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.0"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView19"
|
||||||
|
app:layout_constraintVertical_bias="0.0"
|
||||||
|
app:srcCompat="@drawable/pngwing_com" />
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
@@ -7,4 +7,221 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
tools:context=".Usage">
|
tools:context=".Usage">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView22"
|
||||||
|
android:layout_width="515dp"
|
||||||
|
android:layout_height="364dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
app:layout_constraintVertical_bias="0.0"
|
||||||
|
app:srcCompat="@drawable/rectangle_223" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView23"
|
||||||
|
android:layout_width="515dp"
|
||||||
|
android:layout_height="850dp"
|
||||||
|
android:layout_marginTop="60dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView22"
|
||||||
|
app:srcCompat="@drawable/background" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView25"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
app:layout_constraintBottom_toTopOf="@+id/imageView23"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.0"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView22"
|
||||||
|
app:layout_constraintVertical_bias="0.0"
|
||||||
|
app:srcCompat="@drawable/pngwing_com" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView15"
|
||||||
|
android:layout_width="120dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="30dp"
|
||||||
|
android:text="Usage"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textSize="34sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/imageView25"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.0"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/imageView25"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView25"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView16"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="40dp"
|
||||||
|
android:layout_marginTop="50dp"
|
||||||
|
android:text="Today"
|
||||||
|
android:textColor="#000000"
|
||||||
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView23"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView17"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="35dp"
|
||||||
|
android:layout_marginTop="50dp"
|
||||||
|
android:text="Week"
|
||||||
|
android:textColor="#000000"
|
||||||
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/textView16"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView23"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView18"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="50dp"
|
||||||
|
android:layout_marginEnd="35dp"
|
||||||
|
android:text="Month"
|
||||||
|
android:textColor="#4CAF50"
|
||||||
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toStartOf="@+id/textView19"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView23"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView19"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="50dp"
|
||||||
|
android:layout_marginEnd="40dp"
|
||||||
|
android:text="Year"
|
||||||
|
android:textColor="#000000"
|
||||||
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView23"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView28"
|
||||||
|
android:layout_width="350dp"
|
||||||
|
android:layout_height="200dp"
|
||||||
|
android:layout_marginTop="80dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.488"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView23"
|
||||||
|
app:layout_constraintVertical_bias="0.0"
|
||||||
|
app:srcCompat="@drawable/group_2584" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView20"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="October 2022"
|
||||||
|
android:textColor="#1A1E60"
|
||||||
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/imageView28"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView30"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_marginEnd="30dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/textView20"
|
||||||
|
app:layout_constraintEnd_toStartOf="@+id/textView20"
|
||||||
|
app:layout_constraintHorizontal_bias="0.923"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/textView20"
|
||||||
|
app:layout_constraintVertical_bias="0.0"
|
||||||
|
app:srcCompat="@drawable/group_2660__1_" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView31"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_marginStart="30dp"
|
||||||
|
android:rotation="180"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/textView20"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.0"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/textView20"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/textView20"
|
||||||
|
app:layout_constraintVertical_bias="0.0"
|
||||||
|
app:srcCompat="@drawable/group_2660__1_" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView34"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="445dp"
|
||||||
|
android:layout_marginTop="100dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="1.0"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/imageView23"
|
||||||
|
app:srcCompat="@drawable/group_2666" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView35"
|
||||||
|
android:layout_width="200dp"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_marginTop="200dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toStartOf="@+id/imageView36"
|
||||||
|
app:layout_constraintHorizontal_bias="0.0"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/textView20"
|
||||||
|
app:layout_constraintVertical_bias="1.0"
|
||||||
|
app:srcCompat="@drawable/group_2667" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView36"
|
||||||
|
android:layout_width="200dp"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_marginTop="200dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="@+id/imageView34"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/textView20"
|
||||||
|
app:layout_constraintVertical_bias="0.822"
|
||||||
|
app:srcCompat="@drawable/group_2677" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/button7"
|
||||||
|
android:layout_width="180dp"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_marginTop="200dp"
|
||||||
|
android:backgroundTint="#4CAF50"
|
||||||
|
android:text="View Plan"
|
||||||
|
android:textAllCaps="false"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/imageView34"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.497"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/textView20"
|
||||||
|
app:layout_constraintVertical_bias="0.0" />
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||