0% found this document useful (0 votes)
2 views2 pages

Customer Management Layout XML

The document contains three XML layout files for an Android application. The 'layout_32.xml' defines a vertical LinearLayout, 'menu_32.xml' specifies a menu with various items related to customer management, and 'ds_khachhang.xml' outlines a layout for customer information input, including an EditText, Button, TextView, and ListView. These files are structured to facilitate user interaction and display customer data.

Uploaded by

trangluu176
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Customer Management Layout XML

The document contains three XML layout files for an Android application. The 'layout_32.xml' defines a vertical LinearLayout, 'menu_32.xml' specifies a menu with various items related to customer management, and 'ds_khachhang.xml' outlines a layout for customer information input, including an EditText, Button, TextView, and ListView. These files are structured to facilitate user interaction and display customer data.

Uploaded by

trangluu176
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

layout_32.

xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="[Link]
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

menu_32.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="[Link]
<item
android:id="@+id/mnMoBD"
android:title="Mơ bản đồ"></item>
<item
android:id="@+id/mnGuiemail"
android:title="Gwửi email"></item>
<item
android:id="@+id/mnChonanh"
android:title="Chjọn hình ảnh"></item>
<item
android:id="@+id/mnTT"
android:title="Tthông tin liên hệ"></item>
<item
android:id="@+id/mnNext"
android:title="Next(Quản lý thông tin khách hàng)"></item>
</menu>

ds_khachhang.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="[Link]
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/edtTen"
android:hint="Nhap ten khach hang"
android:textSize="35dp"></EditText>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btnThem"
android:text="Them"></Button>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Danh sach khach hang"
android:textSize="40dp"></TextView>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/lvKhach"></ListView>
</LinearLayout>

You might also like