Possible Duplicate:
How can I implement a 'Lettrine' render in android?

In my applications i want to show news ( from databse ) in a view, for that i have to create this type of view shows in image below.

i want to set image in the image view, title in TextView one and Description in textView 2.. text length will be vary

it should be look like news page . like below image.

enter image description here

link|improve this question

feedback

closed as exact duplicate by casperOne Feb 23 at 23:17

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

It'll be better for you to use not the layout, but markup your news as HTML and put it into WebView.

Otherwise you can take look at the Spannable, add Image as ImageSpan to TextView and (afaik) you can modify the way how text aligns to image.

link|improve this answer
those are not coming from web from DB.. – RajaReddy P Feb 17 at 5:45
You can use Html.toHtml() method to produce HTML from your text (strings, for example). – OleGG Feb 17 at 6:04
1  
+1 All layouts in Android assume the content is rectangular. The text will necessarly be over, or under or next to the image. It's not possible to create the lettrine effect the OP wants. – rds Feb 22 at 16:42
feedback

ok, psuedo code:

<RelativeLayout>

<TextView id=TextView2 width/height=fill_parent />

<ImageView id=ImageView1 width/height=wrap_content 
       layout_alignparenttop=true layout_alignparent_left=true/>
<TextView id=TextView1 width/height=wrap_content 
       layout_alignparenttop=true layout_alignparentright=true />
</RelativeLayout>

The trick is to use a RelativeLayout as the parent, and then the layout_alignParentX set of attributes to define a relative location on screen. Also, the above psuedo-layout assumes TextView2 will go behind the image view.

link|improve this answer
that will lay them out like that yes, but when he actually puts text on TextView2 he would need to know the cursor location so as to jump till after the image... – L7ColWinters Feb 17 at 4:54
.setSelection(n), part of textView so that way you can specify where the cursor will go to – L7ColWinters Feb 17 at 5:06
this is not the solution, i want to start description cursor after title text completed and after image text have to start from left end. – RajaReddy P Feb 17 at 5:11
check my question now – RajaReddy P Feb 17 at 5:18
feedback

Learn thoroughly about different layouts in Android and you can design any type of screen easily

  1. http://developer.android.com/guide/topics/ui/layout-objects.html
  2. (This link may help for your answer) http://android-developers.blogspot.in/2009/02/android-layout-tricks-1.html
  3. http://android-developers.blogspot.in/2009/02/android-layout-tricks-2-reusing-layouts.html
  4. http://android-developers.blogspot.in/2009/03/android-layout-tricks-3-optimize-by.html
  5. http://android-developers.blogspot.in/2009/03/android-layout-tricks-3-optimize-with.html
  6. http://www.android-layouts.com/
  7. http://mobiforge.com/designing/story/understanding-user-interface-android-part-1-layouts
link|improve this answer
The question the OP is asking is not a newbie question, and I don't see an indication in this collection of links. – rds Feb 22 at 16:39
@rds, If you read the article from Point 2 link, it will give you an idea of how you can achieve it, but not way exactly what you want and ofcourse nobody will do that work for you. My links doesn't prove him as a newbie, rather directs to one way of achieving his requirements. There's no much techie thing here to explain in this question rather than learning existing things thoroughly to use them in your way. – Vinayak.B Feb 23 at 7:58
feedback

check this out

  <?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"
android:layout_gravity="center"
android:background="#ffffff"
android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:background="#0059A9"
    android:gravity="center"
    android:padding="50dip"
    android:text="TextView 1" />

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@+id/textView1"
    android:layout_marginTop="10dip"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#0059A9"
        android:gravity="center"
        android:padding="50dip"
        android:text="TextView 1" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_gravity="left"

        android:background="#ffffff"
        android:contentDescription="Image View"
        android:src="@drawable/image_no" />
</RelativeLayout>

link|improve this answer
text view 2 getting margin depending on the image width. from top to bottom , what i want is text should come along with image height after image it shall come below of image view also... – RajaReddy P Feb 17 at 10:31
check my edit now. – Akki Feb 17 at 10:39
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.