Remove unused resources
This commit is contained in:
parent
07aa43aed8
commit
6990fe825e
Binary file not shown.
Before Width: | Height: | Size: 501 B |
Binary file not shown.
Before Width: | Height: | Size: 299 B |
Binary file not shown.
Before Width: | Height: | Size: 620 B |
Binary file not shown.
Before Width: | Height: | Size: 1.0 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/statusbar"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="128dp"
|
||||
android:orientation="horizontal">
|
||||
|
|
|
@ -1,122 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="top">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@+id/select_album_art"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/select_album_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="marquee"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:marqueeRepeatLimit="marquee_forever"
|
||||
android:scrollHorizontally="true"
|
||||
android:singleLine="true"
|
||||
android:text="This is the album title"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
android:textColor="?android:textColorPrimary"
|
||||
android:textStyle="bold">
|
||||
|
||||
<requestFocus
|
||||
android:duplicateParentState="true"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true" />
|
||||
</TextView>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/select_album_artist"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="1"
|
||||
android:text="This is the artist name"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:textColor="?android:textColorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/select_album_song_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="none"
|
||||
android:paddingTop="14dip"
|
||||
android:singleLine="true"
|
||||
android:text="XX SONGS"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="?android:textColorSecondary" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/select_album_song_length"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="none"
|
||||
android:singleLine="true"
|
||||
android:text="0:00"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="?android:textColorSecondary" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<net.nullsum.audinaut.view.RecyclingImageView
|
||||
android:id="@+id/select_album_art"
|
||||
android:layout_width="@dimen/AlbumArt.Header"
|
||||
android:layout_height="@dimen/AlbumArt.Header"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginRight="10dip"
|
||||
android:contentDescription="@null"
|
||||
android:scaleType="fitCenter" />
|
||||
</RelativeLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_gravity="top"
|
||||
android:clickable="true"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/tab_progress_spinner"
|
||||
style="?android:attr/progressBarStyleLarge"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginRight="6dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tab_progress_message"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:text="@string/progress.artist_info"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:textColor="?android:textColorPrimary" />
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="1px"
|
||||
android:layout_gravity="bottom"
|
||||
android:background="?attr/colorPrimary" />
|
||||
</FrameLayout>
|
||||
|
||||
|
|
@ -4,7 +4,6 @@
|
|||
<dimen name="Button.Large">74dip</dimen>
|
||||
<dimen name="Button.Small">54dip</dimen>
|
||||
<dimen name="AlbumArt.Small">96dip</dimen>
|
||||
<dimen name="AlbumArt.Header">210dip</dimen>
|
||||
<dimen name="FastScroller.LeftAlignedMargin">10dp</dimen>
|
||||
<dimen name="FastScroller.NormalBarMargin">8dp</dimen>
|
||||
<dimen name="FastScroller.RightMargin">8dp</dimen>
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
<dimen name="Button.Large">60dip</dimen>
|
||||
<dimen name="Button.Small">42dip</dimen>
|
||||
<dimen name="AlbumArt.Small">78dip</dimen>
|
||||
<dimen name="AlbumArt.Header">120dip</dimen>
|
||||
<dimen name="SongStatusIcon">24dp</dimen>
|
||||
<dimen name="Card.Radius">4dp</dimen>
|
||||
<dimen name="Card.TextLeftPadding">8dp</dimen>
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
<string name="main.welcome_title">Welcome!</string>
|
||||
<string name="main.welcome_text">Welcome to Audinaut! The app is currently configured to use the Subsonic demo server. After you\'ve
|
||||
set up your personal server (available from <b>subsonic.org</b>), please go to <b>Settings</b> and change the configuration to connect to it.</string>
|
||||
<string name="main.about_title">About Audinaut</string>
|
||||
<string name="main.offline">Go Offline</string>
|
||||
<string name="main.online">Go Online</string>
|
||||
<string name="main.albums_per_folder">Per Folder</string>
|
||||
|
@ -80,7 +79,6 @@
|
|||
<string name="search.songs">Songs</string>
|
||||
|
||||
<string name="progress.wait">Please wait…</string>
|
||||
<string name="progress.artist_info">Loading Artist Bio</string>
|
||||
|
||||
<string name="select_album.n_selected">%d selected.</string>
|
||||
<string name="select_album.offline">Offline</string>
|
||||
|
@ -327,10 +325,6 @@
|
|||
<string name="details.public">Public</string>
|
||||
<string name="details.created">Created</string>
|
||||
<string name="details.title">Title</string>
|
||||
<string name="details.author">Author</string>
|
||||
<string name="details.email">Email</string>
|
||||
<string name="details.version">Version</string>
|
||||
<string name="details.available_space">Available Space</string>
|
||||
<string name="details.updated">Updated</string>
|
||||
<string name="details.last_played">Last Played</string>
|
||||
|
||||
|
|
Loading…
Reference in New Issue