You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<android.support.v7.widget.CardView |
|
xmlns:android="http://schemas.android.com/apk/res/android" |
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" |
|
android:layout_height="80dp" |
|
app:cardBackgroundColor="@android:color/holo_blue_bright" |
|
app:cardCornerRadius="10dp" |
|
app:cardElevation="5dp" |
|
app:cardPreventCornerOverlap="true" |
|
app:cardUseCompatPadding="true" |
|
app:contentPadding="5dp"> |
|
|
|
<LinearLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:orientation="horizontal"> |
|
|
|
<TextView |
|
android:id="@+id/textView4" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:text="@string/a_lesson" |
|
android:textColor="@android:color/primary_text_light" |
|
android:textSize="14sp" |
|
android:textStyle="bold" |
|
android:typeface="sans"/> |
|
|
|
<TextView |
|
android:id="@+id/textView" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:gravity="end" |
|
android:text="@string/a_time"/> |
|
</LinearLayout> |
|
|
|
</android.support.v7.widget.CardView>
|
|
|