Advertisement
Guest User

layout

a guest
May 15th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.50 KB | None | 0 0
  1. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:app="http://schemas.android.com/apk/res-auto"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    tools:context=".SecondActivity">
  7.  
  8.     <com.chipkat.app.choirbook.ui.MarqueeToolbar xmlns:android="http://schemas.android.com/apk/res/android"
  9.    xmlns:app="http://schemas.android.com/apk/res-auto"
  10.    xmlns:tools="http://schemas.android.com/tools"
  11.    android:id="@+id/genericToolbar"
  12.    android:layout_width="0dp"
  13.    android:layout_height="?attr/actionBarSize"
  14.    android:background="?attr/colorPrimary"
  15.    android:elevation="4dp"
  16.    android:theme="@style/ThemeOverlay.AppCompat.Dark"
  17.    app:layout_constraintEnd_toEndOf="parent"
  18.    app:layout_constraintStart_toStartOf="parent"
  19.    app:layout_constraintTop_toTopOf="parent"
  20.    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
  21.    tools:showIn="@layout/activity_main" />
  22.  
  23.     <WebView
  24.        android:id="@+id/webViewLyric"
  25.        android:layout_width="0dp"
  26.        android:layout_height="wrap_content"
  27.        android:layout_marginEnd="8dp"
  28.        android:layout_marginStart="8dp"
  29.        android:layout_marginTop="8dp"
  30.        app:layout_constraintEnd_toEndOf="parent"
  31.        app:layout_constraintStart_toStartOf="parent"
  32.        app:layout_constraintTop_toBottomOf="@+id/genericToolbar" />
  33.  
  34. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement