انجمن وب سایت مشاوره در زمینه پروژه های برنامه نویسی و طراحی وب سایتهای تجاری
ایجاد صفحه popup در برنامه نویسی اندروید استدیو - نسخه‌ی قابل چاپ

+- انجمن وب سایت مشاوره در زمینه پروژه های برنامه نویسی و طراحی وب سایتهای تجاری (http://forum.a00b.com)
+-- انجمن: سوالها و مقاله های آموزشی (/forumdisplay.php?fid=1)
+--- انجمن: آموزش حرفه ای برنامه نویسی اندروید استدیو Android Studio (/forumdisplay.php?fid=14)
+--- موضوع: ایجاد صفحه popup در برنامه نویسی اندروید استدیو (/showthread.php?tid=195)



ایجاد صفحه popup در برنامه نویسی اندروید استدیو - ali - 10-01-2018 06:34 PM

در ابتدا یک Layout جدید با هر عنوانی ایجاد می کنیم.

کد:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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_gravity="right"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/textm1001"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginTop="8dp"
        android:text="TextView"
        android:textColor="@color/colorAccent"
        android:textSize="100px"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginTop="64dp"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/textm1001"
        app:layout_constraintVertical_bias="0.0"
        tools:layout_editor_absoluteX="236dp" />
</android.support.constraint.ConstraintLayout>

سپس کد زیر را در Layout اصلی می نویسیم و در هنگام اجرا این Layout دومی به صورت صفحه popup نمایش داده می شود:

کد:
package com.example.dial.dial;

import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        UDF_ShoDial();
    }


    protected void UDF_ShoDial()
    {
        try {
            AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
            View mView = getLayoutInflater().inflate(R.layout.dial_main2 , null);
            TextView textView = (TextView)mView.findViewById(R.id.textm1001);
            textView.setText("پیام قابل نمایش . . .");
            builder.setView(mView);
            AlertDialog dialog = builder.create();
            dialog.show();
        } catch (Exception e) {
            TextView textView3 = (TextView)findViewById(R.id.pptr);
            textView3.setText(e.getMessage().toString());
        }
    }
}

و کد XML مربوط به Layout اصلی به صورت زیر می باشد:

کد:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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=".MainActivity">

    <TextView

        android:id="@+id/pptr"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>