Вы находитесь на странице: 1из 4

f3d69a

<?xml version="1.0" encoding="utf-8"?>


<com.app.marwa.cookApp.utility.CarouselLinearLayout xmlns:android="http://schema
s.android.com/apk/res/android"
android:id="@+id/root_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:gravity="center"
android:padding="@dimen/_50sdp">
<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.
com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
card_view:cardCornerRadius="8dp"
android:layout_margin="@dimen/_45sdp"
card_view:cardUseCompatPadding="true">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/pagerImg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:scaleType="centerCrop"
/>
<ProgressBar
android:id="@+id/progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|center_horizontal"
android:layout_marginTop="@dimen/_30sdp" />

<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#AAFFFFFF"
android:gravity="center"
android:text="hhhhhhh"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:textSize="@dimen/_10sdp"
android:textColor="#000000"
android:layout_gravity="bottom"
android:textStyle="bold"
/>
</FrameLayout>
</android.support.v7.widget.CardView>

</com.app.marwa.cookApp.utility.CarouselLinearLayout>
E:\photosandroid\spatullr_v303\codecanyon-2021676-spatullr-recipes-app-for-andro
id\Spatullr - Recipes App for Android\Projects\spatullr-recipes-app-for-android\
app\build\intermediates\res\release\drawable
an abstract description of an operation to be performed
android.d
atabase.sqlite.SQLiteException: near "AUTOINCREMENT": syntax error (code 1): , w
hile compiling: create table favoris(id INTEGER PRIMARY kEY UNIQUE AUTOINCREMEN
T, name TEXT UNIQUE,image_url TEXT UNIQUE,ingredients TEXT UNIQUE,pub_url TE
XT UNIQUE, instructions TEXT UNIQUE)
i.getExtras();
retrieves a map of extended data from the Intent i (returns a Bundle obj.)
Activity
a single, focused thing that the user can do
onCreate(Bundle savedInstanceState);
method called when the activity is first created
onPause();
method of an Activity called when the system is about to start resuming a previo
us Activity
onResume();
method of an Activity called after onRestoreInstanceState(Bundle), onRestart(),
or onPause(), for your activity to start interacting with the user
Bundle
a mapping from String values to various Parcelable types
Parcelable
Interface for classes whose instances can be written to and restored from a Parc
el
b.putString(k,v);
inserts a String v with a key k (string) in a Bundle b
Bundle b = new Bundle(or);
constructs a Bundle b containing a copy of the mappings from the given Bundle or

ListActivity
an activity that displays a list of items by binding to a data source such as an
array or Cursor, and exposes event handlers when the user selects an item
ListAdapter
Interface that wraps data to pass to a ListView
ListView
a view that shows items in a vertically scrolling list, the items come from the
ListAdapter associated with this view
SimpleAdapter
an easy adapter to map static data to views defined in an XML file
Cursor
Interface that provides random read-write access to the result set returned by a
database query

Вам также может понравиться