70 lines
2.6 KiB
XML
70 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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:id="@+id/content_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingBottom="@dimen/custom_margin"
|
|
android:paddingLeft="@dimen/custom_margin"
|
|
android:paddingRight="@dimen/custom_margin"
|
|
android:paddingTop="@dimen/custom_margin"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
tools:context="cpm.com.gskmtorange.MainActivity"
|
|
tools:showIn="@layout/app_bar_main">
|
|
|
|
<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="match_parent"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginBottom="5dp"
|
|
card_view:cardBackgroundColor="@color/white"
|
|
card_view:cardCornerRadius="5dp" >
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<!-- <ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
|
|
android:layout_marginTop="40dp"
|
|
android:src="@drawable/chings"
|
|
android:visibility="invisible"/>
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginTop="20dp"
|
|
android:src="@drawable/baking_chocolates" />-->
|
|
|
|
<ImageView
|
|
android:id="@+id/img_main"
|
|
android:layout_width="153dp"
|
|
android:layout_height="133dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:src="@drawable/gsklogo"
|
|
android:layout_centerInParent="true"
|
|
/>
|
|
|
|
<WebView
|
|
android:id="@+id/webview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="invisible"></WebView>
|
|
|
|
</RelativeLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
|
</RelativeLayout>
|