Menu Home dan Icon
This commit is contained in:
		
							parent
							
								
									4eabdd81d2
								
							
						
					
					
						commit
						1ca26371a1
					
				
							
								
								
									
										3
									
								
								.vscode/settings.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								.vscode/settings.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					    "java.configuration.updateBuildConfiguration": "interactive"
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -3,39 +3,60 @@ package com.example.bdkipoc;
 | 
				
			|||||||
import android.os.Bundle;
 | 
					import android.os.Bundle;
 | 
				
			||||||
import android.view.View;
 | 
					import android.view.View;
 | 
				
			||||||
import android.widget.Toast;
 | 
					import android.widget.Toast;
 | 
				
			||||||
 | 
					import android.widget.Button;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import androidx.activity.EdgeToEdge;
 | 
					 | 
				
			||||||
import androidx.appcompat.app.AppCompatActivity;
 | 
					import androidx.appcompat.app.AppCompatActivity;
 | 
				
			||||||
import androidx.cardview.widget.CardView;
 | 
					import androidx.cardview.widget.CardView;
 | 
				
			||||||
import androidx.core.graphics.Insets;
 | 
					 | 
				
			||||||
import androidx.core.view.ViewCompat;
 | 
					 | 
				
			||||||
import androidx.core.view.WindowInsetsCompat;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
public class MainActivity extends AppCompatActivity {
 | 
					public class MainActivity extends AppCompatActivity {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @Override
 | 
					    @Override
 | 
				
			||||||
    protected void onCreate(Bundle savedInstanceState) {
 | 
					    protected void onCreate(Bundle savedInstanceState) {
 | 
				
			||||||
        super.onCreate(savedInstanceState);
 | 
					        super.onCreate(savedInstanceState);
 | 
				
			||||||
        EdgeToEdge.enable(this);
 | 
					 | 
				
			||||||
        setContentView(R.layout.activity_main);
 | 
					        setContentView(R.layout.activity_main);
 | 
				
			||||||
        ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
 | 
					 | 
				
			||||||
            Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
 | 
					 | 
				
			||||||
            v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
 | 
					 | 
				
			||||||
            return insets;
 | 
					 | 
				
			||||||
        });
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // Set up click listeners for the cards
 | 
					        setupMenuListeners();
 | 
				
			||||||
        CardView paymentCard = findViewById(R.id.card_payment);
 | 
					    }
 | 
				
			||||||
        CardView transactionsCard = findViewById(R.id.card_transactions);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        paymentCard.setOnClickListener(v -> {
 | 
					    private void setupMenuListeners() {
 | 
				
			||||||
            // Launch payment activity
 | 
					        // Create a map of card IDs to menu names
 | 
				
			||||||
            startActivity(new android.content.Intent(MainActivity.this, PaymentActivity.class));
 | 
					        int[] cardIds = {
 | 
				
			||||||
        });
 | 
					            R.id.card_kartu_kredit,
 | 
				
			||||||
 | 
					            R.id.card_kartu_debit,
 | 
				
			||||||
 | 
					            R.id.card_qris,
 | 
				
			||||||
 | 
					            R.id.card_transfer,
 | 
				
			||||||
 | 
					            R.id.card_uang_elektronik,
 | 
				
			||||||
 | 
					            R.id.card_cetak_ulang,
 | 
				
			||||||
 | 
					            R.id.card_refund,
 | 
				
			||||||
 | 
					            R.id.card_settlement,
 | 
				
			||||||
 | 
					            R.id.card_histori
 | 
				
			||||||
 | 
					        };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        transactionsCard.setOnClickListener(v -> {
 | 
					        String[] menuNames = {
 | 
				
			||||||
            // Launch transactions activity
 | 
					            "Kartu Kredit",
 | 
				
			||||||
            startActivity(new android.content.Intent(MainActivity.this, TransactionActivity.class));
 | 
					            "Kartu Debit",
 | 
				
			||||||
        });
 | 
					            "QRIS",
 | 
				
			||||||
 | 
					            "Transfer",
 | 
				
			||||||
 | 
					            "Uang Elektronik",
 | 
				
			||||||
 | 
					            "Cetak Ulang",
 | 
				
			||||||
 | 
					            "Refund",
 | 
				
			||||||
 | 
					            "Settlement",
 | 
				
			||||||
 | 
					            "Histori"
 | 
				
			||||||
 | 
					        };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Set click listeners for all cards
 | 
				
			||||||
 | 
					        for (int i = 0; i < cardIds.length; i++) {
 | 
				
			||||||
 | 
					            CardView card = findViewById(cardIds[i]);
 | 
				
			||||||
 | 
					            final String menuName = menuNames[i];
 | 
				
			||||||
 | 
					            card.setOnClickListener(v -> 
 | 
				
			||||||
 | 
					                Toast.makeText(this, menuName + " Diklik", Toast.LENGTH_SHORT).show()
 | 
				
			||||||
 | 
					            );
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Set click listener for Lainnya button
 | 
				
			||||||
 | 
					        Button btnLainnya = findViewById(R.id.btn_lainnya);
 | 
				
			||||||
 | 
					        btnLainnya.setOnClickListener(v -> 
 | 
				
			||||||
 | 
					            Toast.makeText(this, "Lainnya Diklik", Toast.LENGTH_SHORT).show()
 | 
				
			||||||
 | 
					        );
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_credit_card.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_credit_card.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 606 B  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_debit_card.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_debit_card.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 2.6 KiB  | 
							
								
								
									
										10
									
								
								app/src/main/res/drawable/ic_e_money.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								app/src/main/res/drawable/ic_e_money.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,10 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="utf-8"?>
 | 
				
			||||||
 | 
					<vector xmlns:android="http://schemas.android.com/apk/res/android"
 | 
				
			||||||
 | 
					    android:width="24dp"
 | 
				
			||||||
 | 
					    android:height="24dp"
 | 
				
			||||||
 | 
					    android:viewportWidth="24"
 | 
				
			||||||
 | 
					    android:viewportHeight="24">
 | 
				
			||||||
 | 
					  <path
 | 
				
			||||||
 | 
					      android:fillColor="#000000"
 | 
				
			||||||
 | 
					      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM11,16h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3v-1h4V8h-2V7h-2v1h-1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3v1H9v2h2v1z"/>
 | 
				
			||||||
 | 
					</vector>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_history.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_history.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 1.3 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_qris.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_qris.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 607 B  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_refund.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_refund.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 2.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_reprint.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								app/src/main/res/drawable/ic_reprint.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 1.0 KiB  | 
							
								
								
									
										10
									
								
								app/src/main/res/drawable/ic_settlement.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								app/src/main/res/drawable/ic_settlement.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,10 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="utf-8"?>
 | 
				
			||||||
 | 
					<vector xmlns:android="http://schemas.android.com/apk/res/android"
 | 
				
			||||||
 | 
					    android:width="24dp"
 | 
				
			||||||
 | 
					    android:height="24dp"
 | 
				
			||||||
 | 
					    android:viewportWidth="24"
 | 
				
			||||||
 | 
					    android:viewportHeight="24">
 | 
				
			||||||
 | 
					  <path
 | 
				
			||||||
 | 
					      android:fillColor="#000000"
 | 
				
			||||||
 | 
					      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,7c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM18,19L6,19v-1.4c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1L18,19z"/>
 | 
				
			||||||
 | 
					</vector>
 | 
				
			||||||
							
								
								
									
										10
									
								
								app/src/main/res/drawable/ic_transfer.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								app/src/main/res/drawable/ic_transfer.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,10 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="utf-8"?>
 | 
				
			||||||
 | 
					<vector xmlns:android="http://schemas.android.com/apk/res/android"
 | 
				
			||||||
 | 
					    android:width="24dp"
 | 
				
			||||||
 | 
					    android:height="24dp"
 | 
				
			||||||
 | 
					    android:viewportWidth="24"
 | 
				
			||||||
 | 
					    android:viewportHeight="24">
 | 
				
			||||||
 | 
					  <path
 | 
				
			||||||
 | 
					      android:fillColor="#000000"
 | 
				
			||||||
 | 
					      android:pathData="M16,17.01V10h-2v7.01h-3L15,20l4,-3h-3zM9,3L5,6h3v7.01h2V6h3L9,3z"/>
 | 
				
			||||||
 | 
					</vector>
 | 
				
			||||||
@ -1,91 +1,470 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					<?xml version="1.0" encoding="utf-8"?>
 | 
				
			||||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
					<androidx.constraintlayout.widget.ConstraintLayout 
 | 
				
			||||||
 | 
					    xmlns:android="http://schemas.android.com/apk/res/android"
 | 
				
			||||||
    xmlns:app="http://schemas.android.com/apk/res-auto"
 | 
					    xmlns:app="http://schemas.android.com/apk/res-auto"
 | 
				
			||||||
    xmlns:tools="http://schemas.android.com/tools"
 | 
					    xmlns:tools="http://schemas.android.com/tools"
 | 
				
			||||||
    android:id="@+id/main"
 | 
					 | 
				
			||||||
    android:layout_width="match_parent"
 | 
					    android:layout_width="match_parent"
 | 
				
			||||||
    android:layout_height="match_parent"
 | 
					    android:layout_height="match_parent"
 | 
				
			||||||
 | 
					    android:background="#F5F5F5"
 | 
				
			||||||
    tools:context=".MainActivity">
 | 
					    tools:context=".MainActivity">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <TextView
 | 
					    <!-- Status Bar Area -->
 | 
				
			||||||
        android:id="@+id/title_text"
 | 
					    <LinearLayout
 | 
				
			||||||
        android:layout_width="wrap_content"
 | 
					        android:id="@+id/status_bar"
 | 
				
			||||||
        android:layout_height="wrap_content"
 | 
					        android:layout_width="match_parent"
 | 
				
			||||||
        android:text="@string/main_title"
 | 
					        android:layout_height="24dp"
 | 
				
			||||||
        android:textSize="24sp"
 | 
					        android:background="#E31937"
 | 
				
			||||||
        android:layout_marginTop="32dp"
 | 
					        android:paddingStart="16dp"
 | 
				
			||||||
        app:layout_constraintEnd_toEndOf="parent"
 | 
					        android:paddingEnd="16dp"
 | 
				
			||||||
        app:layout_constraintStart_toStartOf="parent"
 | 
					        android:gravity="center_vertical"
 | 
				
			||||||
        app:layout_constraintTop_toTopOf="parent" />
 | 
					        app:layout_constraintTop_toTopOf="parent">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <TextView
 | 
				
			||||||
 | 
					            android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:text="10:11"
 | 
				
			||||||
 | 
					            android:textColor="@android:color/white"
 | 
				
			||||||
 | 
					            android:textSize="14sp"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    </LinearLayout>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <!-- Merchant Card -->
 | 
				
			||||||
    <androidx.cardview.widget.CardView
 | 
					    <androidx.cardview.widget.CardView
 | 
				
			||||||
        android:id="@+id/card_payment"
 | 
					        android:id="@+id/merchant_card"
 | 
				
			||||||
        android:layout_width="140dp"
 | 
					        android:layout_width="match_parent"
 | 
				
			||||||
        android:layout_height="140dp"
 | 
					        android:layout_height="wrap_content"
 | 
				
			||||||
        android:layout_marginTop="64dp"
 | 
					        android:layout_margin="16dp"
 | 
				
			||||||
        app:cardCornerRadius="8dp"
 | 
					        app:cardCornerRadius="8dp"
 | 
				
			||||||
        app:cardElevation="4dp"
 | 
					        app:cardElevation="4dp"
 | 
				
			||||||
        app:cardBackgroundColor="@color/light_blue"
 | 
					        app:layout_constraintTop_toBottomOf="@id/status_bar">
 | 
				
			||||||
        app:layout_constraintEnd_toStartOf="@+id/card_transactions"
 | 
					 | 
				
			||||||
        app:layout_constraintStart_toStartOf="parent"
 | 
					 | 
				
			||||||
        app:layout_constraintTop_toBottomOf="@+id/title_text">
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <LinearLayout
 | 
					        <LinearLayout
 | 
				
			||||||
            android:layout_width="match_parent"
 | 
					            android:layout_width="match_parent"
 | 
				
			||||||
            android:layout_height="match_parent"
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
            android:gravity="center"
 | 
					 | 
				
			||||||
            android:orientation="vertical"
 | 
					            android:orientation="vertical"
 | 
				
			||||||
            android:padding="16dp">
 | 
					            android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <ImageView
 | 
					 | 
				
			||||||
                android:layout_width="64dp"
 | 
					 | 
				
			||||||
                android:layout_height="64dp"
 | 
					 | 
				
			||||||
                android:src="@android:drawable/ic_menu_send"
 | 
					 | 
				
			||||||
                android:contentDescription="@string/payment"
 | 
					 | 
				
			||||||
                app:tint="@color/primary_blue" />
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            <TextView
 | 
					            <TextView
 | 
				
			||||||
                android:layout_width="wrap_content"
 | 
					                android:layout_width="wrap_content"
 | 
				
			||||||
                android:layout_height="wrap_content"
 | 
					                android:layout_height="wrap_content"
 | 
				
			||||||
                android:layout_marginTop="8dp"
 | 
					                android:text="TOKO KLONTONG PAK EKO"
 | 
				
			||||||
                android:text="@string/payment2"
 | 
					                android:textColor="@android:color/black"
 | 
				
			||||||
                android:textColor="@color/primary_blue"
 | 
					                android:textSize="18sp"
 | 
				
			||||||
                android:textStyle="bold" />
 | 
					                android:textStyle="bold"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <TextView
 | 
				
			||||||
 | 
					                android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                android:layout_marginTop="4dp"
 | 
				
			||||||
 | 
					                android:text="Ciputat Baru, Tangsel"
 | 
				
			||||||
 | 
					                android:textColor="#808080"
 | 
				
			||||||
 | 
					                android:textSize="14sp"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <View
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="1dp"
 | 
				
			||||||
 | 
					                android:layout_marginTop="12dp"
 | 
				
			||||||
 | 
					                android:layout_marginBottom="12dp"
 | 
				
			||||||
 | 
					                android:background="#EEEEEE"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                android:orientation="horizontal">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="0dp"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_weight="1"
 | 
				
			||||||
 | 
					                    android:text="MID: 12345678901"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="14sp"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="0dp"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_weight="1"
 | 
				
			||||||
 | 
					                    android:text="TID: 12345678901"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="14sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
        </LinearLayout>
 | 
					        </LinearLayout>
 | 
				
			||||||
    </androidx.cardview.widget.CardView>
 | 
					    </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <!-- Menu Grid -->
 | 
				
			||||||
 | 
					    <GridLayout
 | 
				
			||||||
 | 
					        android:id="@+id/menu_grid"
 | 
				
			||||||
 | 
					        android:layout_width="match_parent"
 | 
				
			||||||
 | 
					        android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					        android:columnCount="3"
 | 
				
			||||||
 | 
					        android:rowCount="3"
 | 
				
			||||||
 | 
					        android:background="@android:color/white"
 | 
				
			||||||
 | 
					        android:padding="16dp"
 | 
				
			||||||
 | 
					        app:layout_constraintTop_toBottomOf="@id/merchant_card">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- Kartu Kredit -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_kartu_kredit"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_credit_card"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="Kartu Kredit"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- Kartu Debit -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_kartu_debit"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_debit_card"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="Kartu Debit"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- QRIS -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_qris"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_qris"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="QRIS"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- Transfer -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_transfer"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_transfer"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="Transfer"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- Uang Elektronik -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_uang_elektronik"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_e_money"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="Uang Elektronik"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- Cetak Ulang -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_cetak_ulang"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_reprint"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="Cetak Ulang"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- Refund -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_refund"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_refund"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="Refund"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- Settlement -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_settlement"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_settlement"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="Settlement"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!-- Histori -->
 | 
				
			||||||
 | 
					        <androidx.cardview.widget.CardView
 | 
				
			||||||
 | 
					            android:id="@+id/card_histori"
 | 
				
			||||||
 | 
					            android:layout_width="0dp"
 | 
				
			||||||
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					            android:layout_columnWeight="1"
 | 
				
			||||||
 | 
					            android:layout_rowWeight="1"
 | 
				
			||||||
 | 
					            android:layout_margin="8dp"
 | 
				
			||||||
 | 
					            app:cardCornerRadius="8dp"
 | 
				
			||||||
 | 
					            app:cardElevation="2dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                android:layout_height="match_parent"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                android:gravity="center"
 | 
				
			||||||
 | 
					                android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <ImageView
 | 
				
			||||||
 | 
					                    android:layout_width="48dp"
 | 
				
			||||||
 | 
					                    android:layout_height="48dp"
 | 
				
			||||||
 | 
					                    android:src="@drawable/ic_history"
 | 
				
			||||||
 | 
					                    android:tint="#E31937"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:text="Histori"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/black"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					        </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					    </GridLayout>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <!-- Lainnya Button -->
 | 
				
			||||||
 | 
					    <Button
 | 
				
			||||||
 | 
					        android:id="@+id/btn_lainnya"
 | 
				
			||||||
 | 
					        android:layout_width="match_parent"
 | 
				
			||||||
 | 
					        android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					        android:text="Lainnya"
 | 
				
			||||||
 | 
					        android:textColor="@android:color/white"
 | 
				
			||||||
 | 
					        android:backgroundTint="#E31937"
 | 
				
			||||||
 | 
					        android:textAllCaps="false"
 | 
				
			||||||
 | 
					        android:layout_margin="16dp"
 | 
				
			||||||
 | 
					        app:layout_constraintTop_toBottomOf="@id/menu_grid"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <!-- Scan dan Bayar Card -->
 | 
				
			||||||
    <androidx.cardview.widget.CardView
 | 
					    <androidx.cardview.widget.CardView
 | 
				
			||||||
        android:id="@+id/card_transactions"
 | 
					        android:layout_width="match_parent"
 | 
				
			||||||
        android:layout_width="140dp"
 | 
					        android:layout_height="wrap_content"
 | 
				
			||||||
        android:layout_height="140dp"
 | 
					        android:layout_margin="16dp"
 | 
				
			||||||
        app:cardCornerRadius="8dp"
 | 
					        app:cardCornerRadius="8dp"
 | 
				
			||||||
        app:cardElevation="4dp"
 | 
					        app:cardBackgroundColor="#E31937"
 | 
				
			||||||
        app:cardBackgroundColor="@color/light_gray"
 | 
					        app:layout_constraintBottom_toBottomOf="parent">
 | 
				
			||||||
        app:layout_constraintEnd_toEndOf="parent"
 | 
					 | 
				
			||||||
        app:layout_constraintStart_toEndOf="@+id/card_payment"
 | 
					 | 
				
			||||||
        app:layout_constraintTop_toTopOf="@+id/card_payment">
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <LinearLayout
 | 
					        <LinearLayout
 | 
				
			||||||
            android:layout_width="match_parent"
 | 
					            android:layout_width="match_parent"
 | 
				
			||||||
            android:layout_height="match_parent"
 | 
					            android:layout_height="wrap_content"
 | 
				
			||||||
            android:gravity="center"
 | 
					            android:orientation="horizontal"
 | 
				
			||||||
            android:orientation="vertical"
 | 
					            android:gravity="center_vertical"
 | 
				
			||||||
            android:padding="16dp">
 | 
					            android:padding="16dp">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <ImageView
 | 
					            <ImageView
 | 
				
			||||||
                android:layout_width="64dp"
 | 
					                android:layout_width="48dp"
 | 
				
			||||||
                android:layout_height="64dp"
 | 
					                android:layout_height="48dp"
 | 
				
			||||||
                android:src="@android:drawable/ic_menu_recent_history"
 | 
					                android:src="@drawable/ic_qris"
 | 
				
			||||||
                android:contentDescription="@string/transactions"
 | 
					                android:tint="@android:color/white"/>
 | 
				
			||||||
                app:tint="@color/accent_teal" />
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <TextView
 | 
					            <LinearLayout
 | 
				
			||||||
                android:layout_width="wrap_content"
 | 
					                android:layout_width="0dp"
 | 
				
			||||||
                android:layout_height="wrap_content"
 | 
					                android:layout_height="wrap_content"
 | 
				
			||||||
                android:layout_marginTop="8dp"
 | 
					                android:layout_weight="1"
 | 
				
			||||||
                android:text="@string/transactions2"
 | 
					                android:layout_marginStart="16dp"
 | 
				
			||||||
                android:textColor="@color/accent_teal"
 | 
					                android:orientation="vertical">
 | 
				
			||||||
                android:textStyle="bold" />
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:text="SCAN DAN BAYAR"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/white"
 | 
				
			||||||
 | 
					                    android:textSize="16sp"
 | 
				
			||||||
 | 
					                    android:textStyle="bold"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:text="Terima pembayaran dengan QRIS secara mudah"
 | 
				
			||||||
 | 
					                    android:textColor="@android:color/white"
 | 
				
			||||||
 | 
					                    android:textSize="12sp"/>
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
        </LinearLayout>
 | 
					        </LinearLayout>
 | 
				
			||||||
    </androidx.cardview.widget.CardView>
 | 
					    </androidx.cardview.widget.CardView>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user