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

APPLT

The document contains XML layout files for an Android application, including a main activity layout with a Toolbar and a ListView. It also includes menu definitions for options such as Delete, Uppercase, and Lowercase, as well as additional menu items for Gallery and Lock. The Java code for the MainActivity sets up the Toolbar and configures the ActionBar title and logo.

Uploaded by

thudo642005
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
2 views8 pages

APPLT

The document contains XML layout files for an Android application, including a main activity layout with a Toolbar and a ListView. It also includes menu definitions for options such as Delete, Uppercase, and Lowercase, as well as additional menu items for Gallery and Lock. The Java code for the MainActivity sets up the Toolbar and configures the ActionBar title and logo.

Uploaded by

thudo642005
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 8

<?xml version="1.0" encoding="utf-8"?

>
<androidx.constraintlayout.widget.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:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

</LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>
package com.example.demo;

import android.os.Bundle;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;
import androidx.core.view.WindowInsetsCompat;
import androidx.core.view.ViewCompat;

public class MainActivity extends AppCompatActivity {


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

Toolbar toolbar = findViewById(R.id.toolbar);


setSupportActionBar(toolbar); // Sửa lại tên biến đúng

ActionBar actionBar = getSupportActionBar();


actionBar.setTitle("Tieu de activity"); // Sửa `setTittle` thành `setTitle`
String title = actionBar.getTitle().toString(); // Sửa `getTittle` thành `getTitle()`

actionBar = getSupportActionBar();
actionBar.setDisplayShowHomeEnabled(true);
actionBar.setLogo(R.mipmap.ic_launcher);
actionBar.setDisplayUseLogoEnabled(true);

}
}
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_constraintStart_toStartOf="parent"
tools:context=".MainActivity"
tools:layout_editor_absoluteY="-16dp">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

</LinearLayout>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.listview.MainActivity" >

<ListView
android:id="@+id/lstLanguage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@color/material_blue_grey_800"
android:dividerHeight="1dp" />

</RelativeLayout>

</androidx.constraintlayout.widget.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">

<item android:id="@+id/delId"
android:title="Delete"/>

<item android:id="@+id/upId"
android:title="Uppercase"/>
<item android:id="@+id/lowId"
android:title="Lowercase"/>

</menu>
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<item
android:id="@+id/idMenuGallery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:title="Gallery OptionMenu"
android:icon="@drawable/ic_gallery"
app:showAsAction="ifRoom"/>

<item
android:id="@+id/idMenuLock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:title="Lock OptionMenu"
android:icon="@drawable/ic_lock"
app:showAsAction="always"/>

<item
android:id="@+id/idMenuMore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:title="More OptionMenu"
android:checkable="false"
app:showAsAction="collapseActionView"/>
</menu>

You might also like