Use CardView to add a shadow

This commit is contained in:
Martin Fietz 2015-09-04 16:06:42 +02:00
parent 4bfa2cc2f1
commit 7de666f511
2 changed files with 32 additions and 19 deletions

View File

@ -11,6 +11,7 @@ dependencies {
compile 'com.android.support:support-v4:22.2.1'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:gridlayout-v7:22.2.1'
compile 'com.android.support:cardview-v7:22.2.1'
compile 'org.apache.commons:commons-lang3:3.3.2'
compile('org.shredzone.flattr4j:flattr4j-core:2.12') {
exclude group: 'org.json', module: 'json'
@ -24,7 +25,7 @@ dependencies {
compile 'de.greenrobot:eventbus:2.4.0'
compile 'io.reactivex:rxandroid:1.0.1'
compile 'com.joanzapata.iconify:android-iconify-fontawesome:2.0.3'
compile project(':core')
compile project(':library:drag-sort-listview')
}

View File

@ -4,30 +4,42 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:gravity="center"
android:layout_gravity="center"
android:layout_margin="16dp"
android:background="@color/white">
card_view:cardElevation="12dp"
card_view:cardCornerRadius="4dp"
card_view:cardUseCompatPadding="true"
card_view:cardBackgroundColor="@color/white">
<TextView
android:id="@+id/txtvSelectedSpeed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:textSize="22sp"
android:textStyle="bold"/>
<SeekBar
android:id="@+id/sbSelectSpeed"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"/>
android:layout_gravity="center_vertical"
android:gravity="center">
</LinearLayout>
<TextView
android:id="@+id/txtvSelectedSpeed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:textSize="22sp"
android:textStyle="bold"/>
<SeekBar
android:id="@+id/sbSelectSpeed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"/>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>