1
0
mirror of https://github.com/bspeice/itcs4180 synced 2024-09-29 06:01:35 -04:00
itcs4180/HW5/res/layout/saved_tweets_list.xml
tokugawa f5cfe5ab25 Added isRetweet status to database and saved tweets now display
properly.
Added comments to the head of all files.
2014-04-14 22:53:48 -04:00

46 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:descendantFocusability="blocksDescendants"
android:padding="2dp" >
<ImageView
android:id="@+id/imgProfileImage"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:padding="5dp"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/txtTweetText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/imgProfileImage"
android:padding="5dp"
android:text="TextView" />
<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:padding="5dp"
android:text="TextView" />
<ImageView
android:id="@+id/imgIsRetweet"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentRight="true"
android:layout_below="@+id/txtTweetText"
android:padding="5dp"
android:src="@drawable/not_retweeted" />
</RelativeLayout>