ตัวอย่างนี้สาธิตวิธีสร้างข้อความที่กำหนดเองใน Android
ขั้นตอนที่ 1 − สร้างโครงการใหม่ใน Android Studio ไปที่ไฟล์ ⇒ โครงการใหม่และกรอกรายละเอียดที่จำเป็นทั้งหมดเพื่อสร้างโครงการใหม่
ขั้นตอนที่ 2 − เพิ่มรหัสต่อไปนี้ใน res/layout/activity_main.xml
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="My Custom Message" android:textSize="22sp" android:textAlignment="center" android:layout_marginTop="30dp" android:id="@+id/myCustommessage"/> <Button android:layout_width="140dp" android:layout_height="80dp" android:layout_centerInParent="true" android:text="Show Message" android:backgroundTint="@color/colorPrimary" android:textSize="20dp" android:textColor="#ffffff" android:onClick="btn_showMessage" /> </RelativeLayout>
ขั้นตอนที่ 3 − คลิก res จาก Project → คลิกขวาที่เลย์เอาต์ → เลือกใหม่ → ไฟล์ทรัพยากรเลย์เอาต์ → ตั้งชื่อเลย์เอาต์ =“ custom_dialog ป้อนเลย์เอาต์เชิงเส้นใน “องค์ประกอบรูท” แล้วคลิกตกลง
ขั้นตอนที่ 4 − เพิ่มรหัสต่อไปนี้ใน custom_dialog.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="15dp"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Enter your Message" android:textSize="22sp" android:textAlignment="center" /> <EditText android:id="@+id/txt_input" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:hint="Enter your Message" android:textSize="20sp" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="15dp"> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:backgroundTint="@color/colorPrimary" android:text="Cancel" android:textColor="#ffffff" android:textSize="18sp" android:layout_weight="1" android:id="@+id/btn_cancel"/> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:backgroundTint="@color/colorPrimary" android:text="Okay" android:textColor="#ffffff" android:textSize="18sp" android:layout_weight="1" android:id="@+id/btn_okay"/> </LinearLayout> </LinearLayout>
ขั้นตอนที่ 5 − เพิ่มรหัสต่อไปนี้ใน src/MainActivity.java
import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends AppCompatActivity { TextView myCustomMessage; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); myCustomMessage = (TextView)findViewById(R.id.myCustommessage); } public void btn_showMessage(View view){ final AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this); View mView = getLayoutInflater().inflate(R.layout.custom_dialog,null); final EditText txt_inputText = (EditText)mView.findViewById(R.id.txt_input); Button btn_cancel = (Button)mView.findViewById(R.id.btn_cancel); Button btn_okay = (Button)mView.findViewById(R.id.btn_okay); alert.setView(mView); final AlertDialog alertDialog = alert.create(); alertDialog.setCanceledOnTouchOutside(false); btn_cancel.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { alertDialog.dismiss(); } }); btn_okay.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { myCustomMessage.setText(txt_inputText.getText().toString()); alertDialog.dismiss(); } }); alertDialog.show(); } }
ขั้นตอนที่ 6 − เพิ่มรหัสต่อไปนี้ใน androidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการรันแอพจาก android studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์แล้วคลิกไอคอน Run จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก แล้วตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ -