Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.v7.widget.CardView
- android:layout_width="match_parent"
- android:layout_marginStart="5dp"
- android:layout_marginEnd="5dp"
- android:layout_marginTop="8dp"
- android:layout_marginBottom="4dp"
- app:cardCornerRadius="4dp"
- app:cardElevation="3dp"
- android:id="@+id/stateDataCard"
- android:layout_height="wrap_content">
- <RelativeLayout
- android:id="@+id/cardParentLayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="8dp"
- android:layout_margin="2dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/txtOne"
- android:textColor="#000000"
- android:layout_alignParentStart="true"
- android:layout_marginStart="10dp"
- android:layout_marginTop="10dp"
- android:textSize="25sp"
- android:text="First Text"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="View more"
- android:textAlignment="center"
- android:id="@+id/viewMoreText"
- android:layout_below="@+id/txtOne"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="3dp"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="10dp"
- android:layout_marginEnd="10dp"
- android:id="@+id/moreDataLayout"
- android:visibility="gone"
- android:orientation="vertical"
- android:layout_below="@id/cardParentLayout">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:weightSum="2">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:layout_weight="1"
- android:layout_marginStart="5dp"
- android:gravity="center_horizontal"
- android:layout_marginEnd="5dp"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Secound Hidden Text"
- android:textStyle="bold"
- android:textSize="20sp"
- android:textColor="#000000"
- android:id="@+id/txtTwo"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
- </android.support.v7.widget.CardView>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement