Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
5 views3 pages

S America Artist1

The document is an XML layout for an Android application, defining a user interface with a background image and several UI components. It includes a title section for the Ecuadorian artist Aníbal Villacís, a brief description of his contributions to modern art, and a section for displaying artworks in a horizontal scroll view. The layout utilizes various elements such as LinearLayouts, TextViews, and ImageButtons to create an organized and visually appealing presentation.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views3 pages

S America Artist1

The document is an XML layout for an Android application, defining a user interface with a background image and several UI components. It includes a title section for the Ecuadorian artist Aníbal Villacís, a brief description of his contributions to modern art, and a section for displaying artworks in a horizontal scroll view. The layout utilizes various elements such as LinearLayouts, TextViews, and ImageButtons to create an organized and visually appealing presentation.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

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

>
<RelativeLayout 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=".MainActivity8"
android:background="@drawable/anibal_villacis">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:orientation="horizontal">

<ImageView
android:layout_width="44dp"
android:layout_height="37dp"
android:layout_marginLeft="10dp"
android:src="@drawable/back" />

<ImageView
android:layout_width="44dp"
android:layout_height="37dp"
android:src="@drawable/search"
android:layout_marginLeft="300dp"/>
</LinearLayout>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="200dp"
android:layout_marginLeft="20dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Aníbal"
android:textColor="@color/white"
android:textStyle="bold"
android:textSize="50dp"
android:fontFamily="@font/yesevaOne_Regular"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Villacís"
android:textColor="@color/white"
android:textStyle="bold"

android:textSize="50dp"
android:fontFamily="@font/yesevaOne_Regular"/>

</LinearLayout>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="340dp">

<TextView
android:layout_width="375dp"
android:layout_height="wrap_content"
android:textSize="15dp"
android:layout_marginLeft="20dp"
android:justificationMode="inter_word"
android:text="Aníbal Villacís (1927-2012) was a highly influential
Ecuadorian artist known for his distinctive and multifaceted artistic practice
that spanned painting, drawing, and sculpture. He is considered a key figure in
the development of modern art in Ecuador, bridging international avant-garde
movements with a deep engagement in his country's cultural and social
realities."
android:textColor="@color/white" />

</LinearLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="37dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="470dp"
android:text="Artworks"
android:textColor="@color/white"
android:textStyle="bold"
android:fontFamily="@font/yesevaOne_Regular"
android:textSize="30dp"/>

<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageButton
android:layout_width="140dp"
android:layout_height="193dp"
android:src="@drawable/charged_figure"
android:scaleType="centerCrop"
android:layout_marginLeft="12dp"
android:layout_marginTop="520dp"
android:background="@android:color/transparent"/>

<ImageButton
android:layout_width="235dp"
android:layout_height="193dp"
android:layout_marginLeft="12dp"
android:layout_marginTop="520dp"
android:scaleType="centerCrop"
android:src="@drawable/sed"
android:background="@android:color/transparent"/>

</LinearLayout>
</HorizontalScrollView>

</RelativeLayout>

You might also like