mirror of
https://github.com/hmalik144/Alameera.git
synced 2025-12-10 03:05:33 +00:00
24 lines
732 B
XML
24 lines
732 B
XML
<?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:orientation="vertical"
|
|
tools:context="com.example.h_mal.alameera.MediaActivity">
|
|
|
|
<include
|
|
layout="@layout/custom_appbar" />
|
|
|
|
<GridView
|
|
android:id="@+id/ig_grid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:numColumns="3"
|
|
android:stretchMode="columnWidth">
|
|
|
|
</GridView>
|
|
|
|
</LinearLayout>
|