2014-04-09 09:28:55 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/RelativeLayout1"
|
2014-04-12 13:35:08 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" >
|
2014-04-09 09:28:55 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgProfileImage"
|
2014-04-12 13:35:08 -04:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
2014-04-09 09:28:55 -04:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
|
2014-04-12 13:35:08 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtTweetText"
|
2014-04-09 09:28:55 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-12 13:35:08 -04:00
|
|
|
android:layout_toRightOf="@+id/imgProfileImage"
|
2014-04-09 09:28:55 -04:00
|
|
|
android:layout_alignParentTop="true"
|
2014-04-12 13:35:08 -04:00
|
|
|
android:text="TextView" />
|
2014-04-09 09:28:55 -04:00
|
|
|
|
2014-04-12 13:35:08 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtTweetInfo"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignLeft="@+id/txtTweetText"
|
|
|
|
android:layout_below="@+id/txtTweetText"
|
|
|
|
android:layout_toLeftOf="@+id/imgIsRetweet"
|
|
|
|
android:text="TextView" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/ibtnSaveTweet"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@+id/txtTweetText"
|
|
|
|
android:onClick="onSaveTweet"
|
|
|
|
android:src="@drawable/add_bookmark" />
|
2014-04-09 09:28:55 -04:00
|
|
|
|
2014-04-12 13:35:08 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgIsRetweet"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_alignTop="@+id/ibtnSaveTweet"
|
|
|
|
android:layout_toLeftOf="@+id/ibtnSaveTweet"
|
|
|
|
android:src="@drawable/not_retweeted" />
|
2014-04-09 09:28:55 -04:00
|
|
|
|
|
|
|
</RelativeLayout>
|