diff options
author | Renard | 2016-04-05 01:52:13 -0300 |
---|---|---|
committer | Renard | 2016-04-05 01:52:13 -0300 |
commit | 90ca8b34d823eed19d26f6611716ca231d60424c (patch) | |
tree | 65d389b05acb542f14a8faba8abeaa7b36ae227e /app/src/main/res/layout | |
download | BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.tar.gz BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.tar.xz BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.zip |
Initial commit
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_main.xml | 25 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_response.xml | 134 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_updater.xml | 64 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_viewer.xml | 24 | ||||
-rw-r--r-- | app/src/main/res/layout/app_bar_main.xml | 35 | ||||
-rw-r--r-- | app/src/main/res/layout/boardthread_item.xml | 39 | ||||
-rw-r--r-- | app/src/main/res/layout/content_main.xml | 22 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_fragment_recent.xml | 17 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_fragment_thread_list.xml | 61 | ||||
-rw-r--r-- | app/src/main/res/layout/nav_header_main.xml | 28 | ||||
-rw-r--r-- | app/src/main/res/layout/recentpost_item.xml | 39 | ||||
-rw-r--r-- | app/src/main/res/layout/thread_item.xml | 95 |
12 files changed, 583 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..a61d8a6 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<android.support.v4.widget.DrawerLayout 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/drawer_layout" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true" + tools:openDrawer="start"> + + <include + layout="@layout/app_bar_main" + android:layout_width="match_parent" + android:layout_height="match_parent" /> + + <android.support.design.widget.NavigationView + android:id="@+id/nav_view" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="start" + android:fitsSystemWindows="true" + app:headerLayout="@layout/nav_header_main" + app:menu="@menu/activity_main_drawer" /> + +</android.support.v4.widget.DrawerLayout> diff --git a/app/src/main/res/layout/activity_response.xml b/app/src/main/res/layout/activity_response.xml new file mode 100644 index 0000000..19194d4 --- /dev/null +++ b/app/src/main/res/layout/activity_response.xml @@ -0,0 +1,134 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:paddingBottom="@dimen/activity_vertical_margin" + android:paddingLeft="@dimen/activity_horizontal_margin" + android:paddingRight="@dimen/activity_horizontal_margin" + android:paddingTop="@dimen/activity_vertical_margin" + tools:context="org.bienvenidoainternet.baiparser.ResponseActivity" + android:textAlignment="textEnd"> + <RelativeLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:id="@+id/layoutForm"> + <EditText + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:inputType="textPersonName" + android:ems="10" + android:id="@+id/txtPosterName" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:hint="@string/txt_postername" /> + + <EditText + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:inputType="textEmailAddress" + android:ems="10" + android:id="@+id/txtEmail" + android:layout_below="@+id/txtPosterName" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:hint="@string/txt_email" /> + + <EditText + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:inputType="textMultiLine" + android:ems="10" + android:id="@+id/txtResponse" + android:hint="@string/txt_response" + android:layout_below="@+id/buttonBold" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:clickable="false" + android:capitalize="sentences" /> + + <Button + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/btn_send" + android:id="@+id/btnSend" + android:layout_alignWithParentIfMissing="false" + android:layout_below="@+id/txtResponse" + android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" /> + + <Button + style="?android:attr/buttonStyleSmall" + android:layout_width="32dp" + android:layout_height="32dp" + android:id="@+id/buttonBold" + android:background="@drawable/ic_action_font_bold" + android:layout_below="@+id/txtFilePath" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" /> + + <Button + style="?android:attr/buttonStyleSmall" + android:layout_width="32dp" + android:layout_height="32dp" + android:background="@drawable/ic_action_font_italic" + android:id="@+id/buttonItalic" + android:layout_alignTop="@+id/buttonBold" + android:layout_toRightOf="@+id/buttonBold" + android:layout_toEndOf="@+id/buttonBold" /> + + <EditText + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:id="@+id/txtFilePath" + android:layout_below="@+id/txtEmail" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:enabled="false" + android:hint="Archivo " + android:layout_toLeftOf="@+id/btnSelectFiles" + android:layout_toStartOf="@+id/btnSelectFiles" /> + + <Button + style="?android:attr/buttonStyleSmall" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="..." + android:id="@+id/btnSelectFiles" + android:layout_below="@+id/txtEmail" + android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" /> + + </RelativeLayout> + + <LinearLayout + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_below="@+id/layoutForm" + android:layout_centerHorizontal="true" + android:id="@+id/layoutPostProcess"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="Diviendiendo por 0 ..." + android:id="@+id/txtPostingState" + android:layout_gravity="center_horizontal" /> + + <ProgressBar + style="?android:attr/progressBarStyleHorizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:id="@+id/barPosting" + android:layout_below="@+id/relativeLayout" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:layout_alignRight="@+id/relativeLayout" + android:layout_alignEnd="@+id/relativeLayout" + android:layout_marginTop="3dp" /> + </LinearLayout> + +</RelativeLayout> diff --git a/app/src/main/res/layout/activity_updater.xml b/app/src/main/res/layout/activity_updater.xml new file mode 100644 index 0000000..b287293 --- /dev/null +++ b/app/src/main/res/layout/activity_updater.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:paddingBottom="@dimen/activity_vertical_margin" + android:paddingLeft="@dimen/activity_horizontal_margin" + android:paddingRight="@dimen/activity_horizontal_margin" + android:paddingTop="@dimen/activity_vertical_margin" + tools:context="org.bienvenidoainternet.baiparser.UpdaterActivity"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceMedium" + android:text="Versión actual:" + android:id="@+id/txtCurrentVersion" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" /> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceMedium" + android:text="Última versión:" + android:id="@+id/txtLastVersion" + android:layout_below="@+id/txtCurrentVersion" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" /> + + <Button + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Descargar última versión" + android:id="@+id/btnDownloadLastVersion" + android:layout_alignParentBottom="true" + android:layout_centerHorizontal="true" /> + + <ProgressBar + style="?android:attr/progressBarStyleHorizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:id="@+id/barUpdateProgress" + android:layout_above="@+id/btnDownloadLastVersion" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" /> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="" + android:id="@+id/txtChangelog" + android:layout_below="@+id/txtLastVersion" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" + android:layout_marginTop="5dp" + android:typeface="monospace" + android:layout_above="@+id/barUpdateProgress" + android:layout_marginBottom="5dp" /> +</RelativeLayout> diff --git a/app/src/main/res/layout/activity_viewer.xml b/app/src/main/res/layout/activity_viewer.xml new file mode 100644 index 0000000..b66e66b --- /dev/null +++ b/app/src/main/res/layout/activity_viewer.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context="org.bienvenidoainternet.baiparser.ViewerActivity"> + + <com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView + android:id="@+id/imageView" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + <pl.droidsonroids.gif.GifImageView + android:id="@+id/gifView" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + + <ProgressBar + style="?android:attr/progressBarStyleHorizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:id="@+id/downloadProgressBar" + android:layout_alignParentTop="true" + android:layout_centerHorizontal="true" /> +</RelativeLayout> diff --git a/app/src/main/res/layout/app_bar_main.xml b/app/src/main/res/layout/app_bar_main.xml new file mode 100644 index 0000000..1055aa2 --- /dev/null +++ b/app/src/main/res/layout/app_bar_main.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true" + tools:context="org.bienvenidoainternet.baiparser.MainActivity"> + + <android.support.design.widget.AppBarLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:theme="@style/AppTheme.AppBarOverlay"> + + <android.support.v7.widget.Toolbar + android:id="@+id/toolbar" + android:layout_width="match_parent" + android:layout_height="?attr/actionBarSize" + android:background="?attr/colorPrimary" + app:popupTheme="@style/AppTheme.PopupOverlay" /> + + </android.support.design.widget.AppBarLayout> + + <include layout="@layout/content_main" /> + + <android.support.design.widget.FloatingActionButton + android:id="@+id/fab" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="bottom|end" + android:layout_margin="@dimen/fab_margin" + android:src="@drawable/ic_edit" + android:alpha="128" /> + +</android.support.design.widget.CoordinatorLayout> diff --git a/app/src/main/res/layout/boardthread_item.xml b/app/src/main/res/layout/boardthread_item.xml new file mode 100644 index 0000000..e969e5e --- /dev/null +++ b/app/src/main/res/layout/boardthread_item.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" android:layout_height="match_parent"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="thread_title" + android:id="@+id/threadlist_thread_title" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:layout_marginTop="10dp" + android:layout_marginLeft="10dp" /> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="reply_count" + android:id="@+id/threadlist_replycount" + android:layout_below="@+id/threadlist_thread_title" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:layout_marginLeft="10dp" + android:layout_marginBottom="10dp" /> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="last_reply" + android:id="@+id/threadlist_lastreply" + android:layout_alignTop="@+id/threadlist_replycount" + android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" + android:layout_marginRight="10dp" /> +</RelativeLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/content_main.xml b/app/src/main/res/layout/content_main.xml new file mode 100644 index 0000000..28cc377 --- /dev/null +++ b/app/src/main/res/layout/content_main.xml @@ -0,0 +1,22 @@ +<?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:layout_width="match_parent" + android:layout_height="match_parent" + + app:layout_behavior="@string/appbar_scrolling_view_behavior" + tools:context="org.bienvenidoainternet.baiparser.MainActivity" + tools:showIn="@layout/app_bar_main"> + <android.support.v4.view.ViewPager + android:id="@+id/pager" + android:layout_width="match_parent" + android:layout_height="match_parent" /> + + +</RelativeLayout> + + <!--android:paddingBottom="@dimen/activity_vertical_margin"--> + <!--android:paddingLeft="@dimen/activity_horizontal_margin"--> + <!--android:paddingRight="@dimen/activity_horizontal_margin"--> + <!--android:paddingTop="@dimen/activity_vertical_margin"-->
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_fragment_recent.xml b/app/src/main/res/layout/fragment_fragment_recent.xml new file mode 100644 index 0000000..fa6e67c --- /dev/null +++ b/app/src/main/res/layout/fragment_fragment_recent.xml @@ -0,0 +1,17 @@ +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context="layout.fragmentRecent"> + + <!-- TODO: Update blank fragment layout --> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="New Text" + android:id="@+id/textView" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" /> +</RelativeLayout> diff --git a/app/src/main/res/layout/fragment_fragment_thread_list.xml b/app/src/main/res/layout/fragment_fragment_thread_list.xml new file mode 100644 index 0000000..af88df4 --- /dev/null +++ b/app/src/main/res/layout/fragment_fragment_thread_list.xml @@ -0,0 +1,61 @@ +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_alignParentTop="true" + android:layout_centerHorizontal="true"> + + <LinearLayout + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:id="@+id/layoutThreadProcess" + android:visibility="gone"> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="Error: Unknow" + android:id="@+id/txtThreadError" + android:layout_margin="3dp" + android:textColor="#ff0000" + android:visibility="visible" + android:textAlignment="center" /> + + </LinearLayout> + + <RelativeLayout + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_below="@+id/layoutThreadProcess" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true"> + + <ProgressBar + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:id="@+id/progressBar" + android:layout_gravity="center_horizontal" + android:layout_weight="1" + android:indeterminate="true" + android:indeterminateBehavior="repeat" + android:indeterminateOnly="true" + android:layout_alignParentTop="true" + android:layout_centerHorizontal="true" + android:layout_marginTop="20dp" /> + + <ListView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:id="@+id/lvThreadList" + android:divider="#FF00FF" + android:layout_weight="1" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" /> + </RelativeLayout> + +</RelativeLayout> diff --git a/app/src/main/res/layout/nav_header_main.xml b/app/src/main/res/layout/nav_header_main.xml new file mode 100644 index 0000000..71f218d --- /dev/null +++ b/app/src/main/res/layout/nav_header_main.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="@dimen/nav_header_height" + android:background="@drawable/side_nav_bar" + android:theme="@style/ThemeOverlay.AppCompat.Dark"> + <!--android:gravity="bottom"--> + + <!--<ImageView--> + <!--android:layout_width="64dp"--> + <!--android:layout_height="64dp"--> + <!--android:paddingTop="@dimen/nav_header_vertical_spacing"--> + <!--android:src="@drawable/bai"--> + <!--android:id="@+id/imageView"--> + <!--android:layout_alignParentBottom="false"--> + <!--android:layout_centerHorizontal="true"--> + <!--android:layout_alignParentTop="true" />--> + + <ImageView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@drawable/bai_banner" + android:background="#00000000" + android:layout_alignParentBottom="true" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:adjustViewBounds="true" /> +</RelativeLayout> diff --git a/app/src/main/res/layout/recentpost_item.xml b/app/src/main/res/layout/recentpost_item.xml new file mode 100644 index 0000000..852b317 --- /dev/null +++ b/app/src/main/res/layout/recentpost_item.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" android:layout_width="match_parent" + android:layout_height="match_parent"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="rp_message" + android:id="@+id/rp_message" + android:layout_below="@+id/rp_title" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:layout_marginLeft="5dp" /> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="rp_title" + android:id="@+id/rp_title" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:layout_marginLeft="5dp" + android:layout_marginTop="5dp" + android:textSize="12sp" /> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="rp_timediff" + android:id="@+id/rp_timediff" + android:textSize="12sp" + android:layout_below="@+id/rp_message" + android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" + android:layout_marginRight="5dp" + android:layout_marginBottom="3dp" /> +</RelativeLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/thread_item.xml b/app/src/main/res/layout/thread_item.xml new file mode 100644 index 0000000..a4396b4 --- /dev/null +++ b/app/src/main/res/layout/thread_item.xml @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="horizontal" android:layout_width="match_parent" + android:layout_height="match_parent"> + + <ImageView + android:layout_width="5dp" + android:layout_height="match_parent" + android:id="@+id/ivMargin" + android:scaleType="fitXY" + android:src="@color/defaultMarginColor" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:layout_alignParentTop="true" + android:layout_alignParentBottom="true" /> + + <RelativeLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_alignParentTop="true" + android:layout_toRightOf="@+id/ivMargin" + android:layout_toEndOf="@+id/ivMargin"> + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="397 Nombre: VIPPEADOR : 11/03/16(vie)20:18:31" + android:id="@+id/lv_txtPoster" + android:textSize="10sp" + android:layout_below="@+id/lv_txtTitle" + android:layout_toRightOf="@+id/ivThumb" + android:layout_toEndOf="@+id/ivThumb" + android:layout_marginLeft="3dp" + android:layout_marginTop="3dp" + android:layout_marginRight="3dp" /> + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="Cuerpo del post" + android:id="@+id/lv_txtBody" + android:layout_below="@+id/lv_txtFileInfo" + android:layout_toRightOf="@+id/ivThumb" + android:layout_toEndOf="@+id/ivThumb" + android:layout_marginLeft="3dp" + android:layout_marginTop="3dp" + android:layout_marginRight="3dp" /> + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="Titulo" + android:id="@+id/lv_txtTitle" + android:textStyle="bold" + android:textSize="14sp" + android:layout_alignParentTop="true" + android:layout_toRightOf="@+id/ivThumb" + android:layout_toEndOf="@+id/ivThumb" + android:layout_marginLeft="3dp" + android:layout_marginTop="3dp" + android:layout_marginRight="3dp" />/> + <ImageView + android:layout_width="70dp" + android:layout_height="70dp" + android:id="@+id/ivThumb" + android:src="@drawable/blank" + android:layout_alignParentTop="true" + android:scaleType="centerCrop" /> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="123 Respuestas, 123 Imágenes" + android:id="@+id/lv_txtReplyCounter" + android:layout_below="@+id/lv_txtBody" + android:layout_toRightOf="@+id/ivThumb" + android:layout_toEndOf="@+id/ivThumb" + android:layout_marginLeft="3dp" + android:layout_marginTop="3dp" + android:layout_marginBottom="3dp" + android:layout_marginRight="3dp" /> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="New Text" + android:id="@+id/lv_txtFileInfo" + android:textSize="10sp" + android:layout_below="@+id/lv_txtPoster" + android:layout_toRightOf="@+id/ivThumb" + android:layout_toEndOf="@+id/ivThumb" + android:layout_marginLeft="3dp" + android:layout_marginRight="3dp" /> + </RelativeLayout> + +</LinearLayout>
\ No newline at end of file |