Alhamdulillah. I designed the database of a new app project.
আলহামদুলিল্লাহ । নতুন একটি এপ্স প্রজেক্ট এর ডাটাবেজ ডিজাইন করলাম।
sheepfilms

JBB: An Artblog!
art blog(derogatory)

Kiana Khansmith
Cosimo Galluzzi
Three Goblin Art

izzy's playlists!
Jules of Nature

No title available
Aqua Utopia|海の底で記憶を紡ぐ

Origami Around
trying on a metaphor
Sade Olutola
Alisa U Zemlji Chuda
Cosmic Funnies

⁂

❣ Chile in a Photography ❣
Show & Tell
DEAR READER
Claire Keane
seen from Canada

seen from United States

seen from Algeria
seen from United States

seen from United States
seen from United Kingdom
seen from Türkiye
seen from United States

seen from Malaysia

seen from Germany
seen from Belgium
seen from France

seen from Estonia
seen from Türkiye
seen from Malaysia
seen from T1
seen from Türkiye

seen from United Kingdom

seen from Türkiye

seen from Russia
@shipon2004
Alhamdulillah. I designed the database of a new app project.
আলহামদুলিল্লাহ । নতুন একটি এপ্স প্রজেক্ট এর ডাটাবেজ ডিজাইন করলাম।
android:screenOrientation="landscape"
Volly vs Retrofit বা OkHttp
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp" android:orientation="vertical"
>
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:weightSum="5" android:layout_margin="4dp"
>
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 1" android:layout_weight="1" android:textSize="13dp"
/>
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 2" android:layout_weight="1" android:textSize="13dp" />
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 3" android:layout_weight="1" android:textSize="13dp" />
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 4" android:layout_weight="1" android:textSize="13dp" />
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 5" android:layout_weight="1" android:textSize="13dp" />
</LinearLayout>
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:weightSum="5" android:layout_margin="4dp"
>
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 6" android:layout_weight="1" android:textSize="13dp"
/>
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 7" android:layout_weight="1" android:textSize="13dp" />
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 8" android:layout_weight="1" android:textSize="13dp" />
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid 9" android:layout_weight="1" android:textSize="13dp" />
<CheckBox
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="paid1" android:layout_weight="1" android:textSize="13dp" />
</LinearLayout>
</LinearLayout>
Me Leaning pymeant number API
"bkash":" বিকাশে/নগদ/রকেট একাউন্টে <b>সেন্ডমানি</b> করতে নিচের নাম্বারে পাঠিয়ে দিন<br><br> 01850140801",
"ngod":"বিকাশ মার্চেন্ট একাউন্টে পেমেন্ট করতে নিচের নাম্বারে পাঠিয়ে দিন <br><br> 01863464968",
"roket":"VISA Card এ পেমেন্ট করতে নিচের একাউন্ট নাম্বারে পাঠিয়ে দিন <br><br> 4628 7020 1331 7305",
A conversational AI system that listens, learns, and challenges
IN app update coding
No Internet Connection
ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo wificonne = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI); NetworkInfo dataconne = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE); if (wificonne != null && wificonne.isConnected() || dataconne != null && dataconne.isConnected()) {
frameLayout.setVisibility(View.VISIBLE); carousel.setVisibility(View.VISIBLE); tabLayout.setVisibility(View.VISIBLE);
} else { showCoustom();
frameLayout.setVisibility(View.GONE); carousel.setVisibility(View.GONE); tabLayout.setVisibility(View.GONE);
}/////////////////////////////////////////////-----------------------------------
private void showCoustom() {
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Please turn on the network!!") .setMessage("please internet connection!!") .setCancelable(true) .setPositiveButton("WiFi", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) {
startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS)); } }) .setNegativeButton("Data", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { startActivity(new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS));
} });
AlertDialog alertDialog = builder.create(); alertDialog.show();
}//------------------------
Delete item
<?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout 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" android:fitsSystemWindows="true" tools:context=".FreeBankActivity" >
<com.google.android.material.appbar.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:fitsSystemWindows="true">
<com.google.android.material.appbar.MaterialToolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" />
</com.google.android.material.appbar.AppBarLayout>
<include layout="@layout/content_free_bank" />
<com.google.android.material.floatingactionbutton.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:layout_marginEnd="@dimen/fab_margin" android:layout_marginBottom="16dp" app:srcCompat="@android:drawable/ic_dialog_email" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
ProgressBar
<ProgressBar
android:layout_width="match_parent" android:layout_height="wrap_content" style="@style/Widget.AppCompat.ProgressBar.Horizontal" android:id="@+id/progressBsr" android:indeterminate="true"
/>
Custom Switch in android java
id 38341 app **Closed testing ase 6 din ** **google theke ei mail diche **
PDF Downlod and Ofline view
dependencies {
implementation 'com.github.barteksc:android-pdf-viewer:3.2.0-beta.1' implementation 'com.airbnb.android:lottie:6.3.0' implementation 'com.mindorks.android:prdownloader:0.6.0' } //-------
MainActivity -----------------
<?xml version="1.0" encoding="utf-8"?> <LinearLayout 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" android:layout_gravity="center" android:background="@color/white" android:gravity="center" android:orientation="vertical" tools:context=".MainActivity" >
<Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:backgroundTint="#BCCC25" android:padding="10sp" android:text="PDF One View" android:textColor="#60BF46" android:textSize="30dp" />
<Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:backgroundTint="#395393" android:padding="10sp" android:text="PDF One View" android:textColor="#33BAB6" android:textSize="30dp" />
</LinearLayout>
Java তে setContentView এর উপরে আমার দেওয়া কোড তা লিখে দিন । কোডঃ getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
Tutorial 41 : INNER JOIN in SQL
coding=----
SELECT std.Roll, exam.Reg_number, std.Name,std.Gender,exam.Group_name,exam.GPA
FROM student_details AS std INNER JOIN exam_result AS exam ON std.Roll = exam.Roll;
Tutorial 40 : JOIN Clause in SQL
coding --
SELECT std.Roll, exam.Reg_number,std.Name, std.Gender,exam.Group_name,exam.GPA
FROM student_details AS std ,exam_result AS exam WHERE std.Roll =exam.Roll;
Tutorial 39 : Joining Tables
SELECT student_details.Roll, Reg_number,Name,Gender,Group_name,GPA FROM student_details,exam_result WHERE student_details.Roll =exam_result.Roll;
TRUNCATE TABLE Command in SQL
coding ---
out put
কলামের থাকা সকল রেক্ড ডিলিট হয়ে ছে