Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid Layout Structuring
    primarykey
    data
    text
    <p>I want to create a layout like below..</p> <p><img src="https://i.stack.imgur.com/02a5l.jpg" alt="enter image description here"></p> <p>This is the XML i have come across</p> <p></p> <pre><code> &lt;LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" &gt; &lt;ImageView android:id="@+id/display_photo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ic_launcher" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" &gt; &lt;LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" &gt; &lt;TextView android:id="@+id/username" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:ellipsize="end" android:singleLine="true" android:text="Username" android:textColor="#000000" /&gt; &lt;TextView android:id="@+id/timestamp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="0" android:singleLine="true" android:text="2 hours ago" android:textColor="#000000" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" &gt; &lt;TextView android:id="@+id/location" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" android:text="Location" android:textColor="#000000" /&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; </code></pre> <p>How can i have the text over with .... after certain characters.. and how to place the time on the right handside ?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload