Advertisement
Guest User

Untitled

a guest
May 7th, 2021
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.07 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TableLayout android:layout_height="match_parent"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    android:id="@+id/headerNavBarMenuTableLayout"
  5.    android:layout_width="match_parent"
  6.    xmlns:android="http://schemas.android.com/apk/res/android">
  7.     <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content">
  8.         <TableRow
  9.            android:layout_width="139dp"
  10.            android:layout_height="match_parent">
  11.             <!--imagem da pessoa-->
  12.             <ImageView
  13.                android:id="@+id/fotoPerfilUtilizadorNavBar"
  14.                app:srcCompat="@drawable/ic_launcher_background"
  15.                android:layout_width="137dp"
  16.                android:layout_height="wrap_content" />
  17.         </TableRow>
  18.         <TableRow
  19.            android:layout_width="210dp"
  20.            android:layout_height="match_parent">
  21.             <TableLayout
  22.                android:layout_width="match_parent"
  23.                android:layout_height="match_parent">
  24.                 <LinearLayout
  25.                    android:layout_width="match_parent"
  26.                    android:layout_height="match_parent"
  27.                    android:orientation="horizontal"
  28.                    android:layout_weight="1">
  29.                     <TextView
  30.                        android:layout_width="match_parent"
  31.                        android:layout_height="match_parent"
  32.                        android:text="UTILIZADOR" />
  33.                 </LinearLayout>
  34.                 <LinearLayout
  35.                    android:layout_width="match_parent"
  36.                    android:layout_height="match_parent"
  37.                    android:orientation="horizontal"
  38.                    android:layout_weight="1">
  39.                     <LinearLayout
  40.                        android:layout_width="158dp"
  41.                        android:layout_height="match_parent"
  42.                        android:layout_weight="2"
  43.                        android:orientation="vertical">
  44.                         <ImageView
  45.                            android:id="@+id/imageView6"
  46.                            android:layout_width="match_parent"
  47.                            android:layout_height="wrap_content"
  48.                            android:layout_weight="0.5"
  49.                            app:srcCompat="@drawable/ic_trofeu_24px" />
  50.                     </LinearLayout>
  51.                     <LinearLayout
  52.                        android:layout_width="match_parent"
  53.                        android:layout_height="match_parent"
  54.                        android:orientation="horizontal"
  55.                        android:layout_weight="1">
  56.                         <TextView
  57.                            android:layout_width="match_parent"
  58.                            android:layout_height="match_parent"
  59.                            android:text="PONTUACAO"
  60.                            android:gravity="center"/>
  61.                     </LinearLayout>
  62.                 </LinearLayout>
  63.             </TableLayout>
  64.         </TableRow>
  65.     </TableRow>
  66. </TableLayout>
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement