Difference between revisions of "Android App"
Line 96: | Line 96: | ||
[[File:12.png|950px|thumb|center|]] | [[File:12.png|950px|thumb|center|]] | ||
− | |||
[[File:13.png|950px|thumb|center|]] | [[File:13.png|950px|thumb|center|]] | ||
+ | |||
+ | <syntaxhighlight lang="java"> | ||
+ | <LinearLayout | ||
+ | xmlns:android="http://schemas.android.com/apk/res/android" | ||
+ | android:orientation="vertical" | ||
+ | android:layout_width="match_parent" | ||
+ | android:layout_height="match_parent" | ||
+ | android:background="@android:color/darker_gray"> | ||
+ | |||
+ | <TextView | ||
+ | android:text="VIP List" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:background="#4CAF50" | ||
+ | android:textSize="24sp" /> | ||
+ | |||
+ | <TextView | ||
+ | android:text="Kunal" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:background="#4CAF50" | ||
+ | android:textSize="24sp" /> | ||
+ | |||
+ | <TextView | ||
+ | android:text="Kagure" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:background="#4CAF50" | ||
+ | android:textSize="24sp" /> | ||
+ | |||
+ | <TextView | ||
+ | android:text="Lyla" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:background="#4CAF50" | ||
+ | android:textSize="24sp" /> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | </LinearLayout> | ||
[[File:14.png|950px|thumb|center|]] | [[File:14.png|950px|thumb|center|]] | ||
+ | |||
+ | https://developer.android.com/guide/topics/ui/layout/linear.html?utm_source=udacity&utm_medium=course&utm_campaign=android_basics | ||
+ | |||
[[File:15.png|950px|thumb|center|]] | [[File:15.png|950px|thumb|center|]] | ||
Line 114: | Line 155: | ||
[[File:22.png|950px|thumb|center|]] | [[File:22.png|950px|thumb|center|]] | ||
[[File:23.png|950px|thumb|center|]] | [[File:23.png|950px|thumb|center|]] | ||
− | |||
[[File:24.png|950px|thumb|center|]] | [[File:24.png|950px|thumb|center|]] | ||
[[File:25.png|950px|thumb|center|]] | [[File:25.png|950px|thumb|center|]] | ||
+ | |||
+ | https://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html?utm_source=udacity&utm_medium=course&utm_campaign=android_basics | ||
+ | |||
[[File:26.png|950px|thumb|center|]] | [[File:26.png|950px|thumb|center|]] | ||
[[File:27.png|950px|thumb|center|]] | [[File:27.png|950px|thumb|center|]] | ||
+ | |||
+ | Documentation with all the parameters. | ||
+ | |||
[[File:28.png|950px|thumb|center|]] | [[File:28.png|950px|thumb|center|]] | ||
+ | |||
+ | https://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html?utm_source=udacity&utm_medium=course&utm_campaign=android_basics | ||
+ | |||
[[File:29.png|950px|thumb|center|]] | [[File:29.png|950px|thumb|center|]] | ||
+ | |||
+ | |||
+ | <syntaxhighlight lang="java"> | ||
+ | <RelativeLayout | ||
+ | xmlns:android="http://schemas.android.com/apk/res/android" | ||
+ | android:layout_width="match_parent" | ||
+ | android:layout_height="match_parent" | ||
+ | android:background="#FF8000"> | ||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/lyla_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentBottom="true" | ||
+ | android:layout_alignParentLeft="true" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Lyla" | ||
+ | android:layout_marginBottom="20dp" | ||
+ | android:layout_marginLeft="10dp" | ||
+ | android:layout_marginTop="5dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/me_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentBottom="true" | ||
+ | android:layout_toRightOf="@id/lyla_text_view" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Me" | ||
+ | android:layout_marginBottom="20dp" | ||
+ | android:layout_marginLeft="20dp" | ||
+ | android:layout_marginTop="5dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/natalie_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentBottom="true" | ||
+ | android:layout_above="@id/lyla_text_view" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Natalie" | ||
+ | android:layout_marginLeft="13dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/jennie_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentBottom="true" | ||
+ | android:layout_alignParentRight="true" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Jennie" | ||
+ | android:layout_marginBottom="20dp" | ||
+ | android:layout_marginRight="10dp" | ||
+ | android:layout_marginTop="5dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/omoju_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentRight="true" | ||
+ | android:layout_above="@id/jennie_text_view" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Omoju" | ||
+ | android:layout_marginRight="10dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/amy_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentBottom="true" | ||
+ | android:layout_alignParentRight="true" | ||
+ | android:layout_above="@id/omoju_text_view" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Amy" | ||
+ | android:layout_marginRight="10dp" | ||
+ | android:layout_marginBottom="5dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/ben_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentTop="true" | ||
+ | android:layout_centerHorizontal="true" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Ben" | ||
+ | android:layout_marginLeft="5dp" | ||
+ | android:layout_marginTop="20dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/kunal_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentTop="true" | ||
+ | android:layout_toLeftOf="@id/ben_text_view" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Kunal" | ||
+ | android:layout_marginTop="20dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | <TextView | ||
+ | android:id="@+id/kagure_text_view" | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:layout_alignParentTop="true" | ||
+ | android:layout_toRightOf="@id/ben_text_view" | ||
+ | android:textSize="24sp" | ||
+ | android:text="Kagure" | ||
+ | android:layout_marginLeft="15dp" | ||
+ | android:layout_marginTop="20dp" | ||
+ | android:background="#00FF" | ||
+ | android:textColor="#FFFF"/> | ||
+ | |||
+ | </RelativeLayout> | ||
+ | </syntaxhighlight> | ||
+ | |||
[[File:30.png|950px|thumb|center|]] | [[File:30.png|950px|thumb|center|]] | ||
[[File:31.png|950px|thumb|center|]] | [[File:31.png|950px|thumb|center|]] | ||
[[File:32.png|950px|thumb|center|]] | [[File:32.png|950px|thumb|center|]] | ||
[[File:34.png|950px|thumb|center|]] | [[File:34.png|950px|thumb|center|]] | ||
+ | |||
+ | |||
+ | |||
+ | <syntaxhighlight lang="java"> | ||
+ | <LinearLayout | ||
+ | xmlns:android="http://schemas.android.com/apk/res/android" | ||
+ | android:layout_width="match_parent" | ||
+ | android:layout_height="match_parent" | ||
+ | android:orientation="vertical"> | ||
+ | |||
+ | <ImageView | ||
+ | android:src="@drawable/ocean" | ||
+ | android:layout_width="match_parent" | ||
+ | android:layout_height="0dp" | ||
+ | android:layout_weight="1" | ||
+ | android:scaleType="centerCrop"/> | ||
+ | |||
+ | <TextView | ||
+ | android:text="You're invited!" | ||
+ | android:layout_width="match_parent" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:textColor="@android:color/white" | ||
+ | android:textSize="45sp" | ||
+ | android:background="#009688" | ||
+ | android:paddingTop="16dp" | ||
+ | android:paddingRight="16dp" | ||
+ | android:paddingLeft="16dp" | ||
+ | android:paddingBottom="8dp"/> | ||
+ | |||
+ | <TextView | ||
+ | android:text="Bonfire at the beach" | ||
+ | android:layout_width="match_parent" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:textColor="@android:color/white" | ||
+ | android:textSize="24sp" | ||
+ | android:background="#009688" | ||
+ | android:paddingBottom="16dp" | ||
+ | android:paddingRight="16dp" | ||
+ | android:paddingLeft="16dp"/> | ||
+ | |||
+ | </LinearLayout> | ||
+ | </syntaxhighlight> | ||
+ | |||
[[File:35.png|950px|thumb|center|]] | [[File:35.png|950px|thumb|center|]] | ||
+ | In layers view Overlapping view | ||
+ | position attributes | ||
[[File:36.png|950px|thumb|center|]] | [[File:36.png|950px|thumb|center|]] | ||
[[File:37.png|950px|thumb|center|]] | [[File:37.png|950px|thumb|center|]] | ||
[[File:38.png|950px|thumb|center|]] | [[File:38.png|950px|thumb|center|]] |
Revision as of 12:41, 6 August 2019
Adroid
XML syntax
< TextView //open tag
android:text=“Happy Valentine’s Day” // attributes
android:background=“@android:color/darker_gray” // attributes
Android:layout_width=“150dp” // attributes
Android:layout_height=“75dp”/> // attributes and close tag
For the width / height to be precisely with the size of the content the value will be = “wrap_content”
or
https://plus.google.com/+AndroidDevelopers/posts/gQuBtnuk6iG
Hex Color
<TextView
android:text="Happy Valentine's Day Ale eu amo vc de montao :) !"
android:textColor="@android:color/black"
android:background="#FF0266"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="45sp"
android:textStyle="bold"
/>
Image
<TextView
<ImageView
android:src="@drawable/cake"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerCrop"/>
ViewGroups
- LinearLayout
- RelativeLayout
<TextView
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:text="Guest List"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24sp" />
<TextView
android:text="Kunal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24sp" />
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray">
<TextView
android:text="VIP List"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:textSize="24sp" />
<TextView
android:text="Kunal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:textSize="24sp" />
<TextView
android:text="Kagure"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:textSize="24sp" />
<TextView
android:text="Lyla"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:textSize="24sp" />
</LinearLayout>
Documentation with all the parameters.
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FF8000">
<TextView
android:id="@+id/lyla_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:textSize="24sp"
android:text="Lyla"
android:layout_marginBottom="20dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:background="#00FF"
android:textColor="#FFFF"/>
<TextView
android:id="@+id/me_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@id/lyla_text_view"
android:textSize="24sp"
android:text="Me"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="5dp"
android:background="#00FF"
android:textColor="#FFFF"/>
<TextView
android:id="@+id/natalie_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_above="@id/lyla_text_view"
android:textSize="24sp"
android:text="Natalie"
android:layout_marginLeft="13dp"
android:background="#00FF"
android:textColor="#FFFF"/>
<TextView
android:id="@+id/jennie_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:textSize="24sp"
android:text="Jennie"
android:layout_marginBottom="20dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:background="#00FF"
android:textColor="#FFFF"/>
<TextView
android:id="@+id/omoju_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_above="@id/jennie_text_view"
android:textSize="24sp"
android:text="Omoju"
android:layout_marginRight="10dp"
android:background="#00FF"
android:textColor="#FFFF"/>
<TextView
android:id="@+id/amy_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_above="@id/omoju_text_view"
android:textSize="24sp"
android:text="Amy"
android:layout_marginRight="10dp"
android:layout_marginBottom="5dp"
android:background="#00FF"
android:textColor="#FFFF"/>
<TextView
android:id="@+id/ben_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textSize="24sp"
android:text="Ben"
android:layout_marginLeft="5dp"
android:layout_marginTop="20dp"
android:background="#00FF"
android:textColor="#FFFF"/>
<TextView
android:id="@+id/kunal_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@id/ben_text_view"
android:textSize="24sp"
android:text="Kunal"
android:layout_marginTop="20dp"
android:background="#00FF"
android:textColor="#FFFF"/>
<TextView
android:id="@+id/kagure_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@id/ben_text_view"
android:textSize="24sp"
android:text="Kagure"
android:layout_marginLeft="15dp"
android:layout_marginTop="20dp"
android:background="#00FF"
android:textColor="#FFFF"/>
</RelativeLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:src="@drawable/ocean"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:scaleType="centerCrop"/>
<TextView
android:text="You're invited!"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:textSize="45sp"
android:background="#009688"
android:paddingTop="16dp"
android:paddingRight="16dp"
android:paddingLeft="16dp"
android:paddingBottom="8dp"/>
<TextView
android:text="Bonfire at the beach"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:textSize="24sp"
android:background="#009688"
android:paddingBottom="16dp"
android:paddingRight="16dp"
android:paddingLeft="16dp"/>
</LinearLayout>
In layers view Overlapping view
position attributes