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.
73 lines
2.5 KiB
73 lines
2.5 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright 2013 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<com.example.android.batchstepsensor.cardstream.CardLayout
|
|
android:id="@+id/card_layout"
|
|
style="@style/Card"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/card_actionarea"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/card_contentarea"
|
|
android:background="@color/card_action_bg"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/card_action_margin"
|
|
android:visibility="gone"
|
|
>
|
|
<include layout="@layout/card_button_seperator"/>
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@id/card_contentarea"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
style="@style/CardContentArea">
|
|
|
|
<TextView
|
|
android:id="@+id/card_title"
|
|
style="@style/CardTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView
|
|
android:id="@+id/card_content"
|
|
style="@style/CardContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/card_title"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/card_overlay"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignBottom="@id/card_contentarea"
|
|
android:layout_alignLeft="@id/card_contentarea"
|
|
android:layout_alignRight="@id/card_contentarea"
|
|
android:layout_alignTop="@id/card_contentarea"
|
|
android:layout_alignWithParentIfMissing="false"
|
|
android:visibility="invisible"/>
|
|
|
|
</com.example.android.batchstepsensor.cardstream.CardLayout>
|