plectrum

Plectrum: instrument tuner for Android
Log | Files | Refs | README | LICENSE

activity_main.xml (1155B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3     xmlns:app="http://schemas.android.com/apk/res-auto"
      4     xmlns:tools="http://schemas.android.com/tools"
      5     android:id="@+id/main_layout"
      6     android:layout_width="match_parent"
      7     android:layout_height="match_parent"
      8     android:orientation="vertical"
      9     tools:context="com.github.cythara.MainActivity">
     10 
     11     <androidx.appcompat.widget.Toolbar
     12         android:id="@+id/my_toolbar"
     13         android:layout_width="match_parent"
     14         android:layout_height="?attr/actionBarSize"
     15         android:background="?attr/colorPrimary"
     16         android:elevation="4dp"
     17         android:theme="@style/AppTheme"
     18         app:popupTheme="@style/AppTheme" />
     19 
     20     <com.jaredrummler.materialspinner.MaterialSpinner
     21         android:id="@+id/tuning"
     22         android:layout_width="match_parent"
     23         android:layout_height="wrap_content" />
     24 
     25     <com.github.cythara.TunerView
     26         android:id="@+id/pitch"
     27         android:layout_width="wrap_content"
     28         android:layout_height="wrap_content"
     29         android:theme="@style/AppTheme" />
     30 
     31 </LinearLayout>