add recyclerview item and progressbar layout

Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/commit/c7a136db
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/c7a136db
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/c7a136db

Branch: refs/heads/master
Commit: c7a136dbc3041cdc12296186ac256344e6e33ca6
Parents: 3f14e66
Author: Sagar <[email protected]>
Authored: Fri May 6 16:57:48 2016 +0530
Committer: Sagar <[email protected]>
Committed: Fri May 6 16:57:48 2016 +0530

----------------------------------------------------------------------
 app/src/main/res/layout/item_progressbar.xml  | 13 +++++++++++++
 app/src/main/res/layout/item_recyclerview.xml | 15 +++++++++++++++
 2 files changed, 28 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c7a136db/app/src/main/res/layout/item_progressbar.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/layout/item_progressbar.xml 
b/app/src/main/res/layout/item_progressbar.xml
new file mode 100644
index 0000000..cb63c21
--- /dev/null
+++ b/app/src/main/res/layout/item_progressbar.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android";
+              android:layout_width="match_parent"
+              android:layout_height="match_parent"
+              android:orientation="vertical" >
+
+    <ProgressBar
+        android:id="@+id/progressBar1"
+        android:layout_width="wrap_content"
+        android:layout_gravity="right"
+        android:layout_height="wrap_content" />
+
+</LinearLayout>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c7a136db/app/src/main/res/layout/item_recyclerview.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/layout/item_recyclerview.xml 
b/app/src/main/res/layout/item_recyclerview.xml
new file mode 100644
index 0000000..5a05bcc
--- /dev/null
+++ b/app/src/main/res/layout/item_recyclerview.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.v7.widget.CardView
+    xmlns:android="http://schemas.android.com/apk/res/android";
+    android:id="@+id/cv"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content">
+
+    <TextView
+        android:id="@+id/textview_announcement"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:textSize="20sp"
+        android:text="111111"/>
+
+</android.support.v7.widget.CardView>
\ No newline at end of file

Reply via email to