forked from AOKP/packages_apps_ROMControl
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved about section.... SEXY! Images are pulled from your twitter account profile Patch AOKP#2 - put back in strings i removed on accident... Patch AOKP#3 - use url image helper (https://github.com/koush/UrlImageViewHelper) to handle downloading and caching profile pictures. - add more aokp fellas - randomly sort order in which devs are shown Patch AOKP#4 - add more donate links, still missing Nitroz's Patch AOKP#5 - add stevespearderp Patch AOKP#6 - fix kwes' url - add birdman Patch AOKP#7 - add nitroz Change-Id: I420d29689e0530db8d805c06529801e1b6ea6ba4 Signed-off-by: Adam Fisch <adammfisch@gmail.com>
- Loading branch information
1 parent
eb2cb87
commit 4e09220
Showing
17 changed files
with
620 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<FrameLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:paddingLeft="15dip" | ||
android:paddingRight="15dip"> | ||
|
||
<RelativeLayout | ||
android:id="@+id/image_here" | ||
android:layout_width="wrap_content" | ||
android:layout_height="150dip" | ||
android:paddingTop="8dip" | ||
android:gravity="center_vertical" | ||
android:orientation="vertical"> | ||
|
||
<ImageView | ||
android:id="@+id/photo" | ||
android:layout_width="match_parent" | ||
android:layout_height="150dip" | ||
android:scaleType="centerCrop" /> | ||
|
||
<View | ||
android:id="@+id/photo_text_bar" | ||
android:layout_width="wrap_content" | ||
android:layout_height="42dip" | ||
android:layout_alignBottom="@id/photo" | ||
android:layout_alignLeft="@id/photo" | ||
android:background="#7F000000" /> | ||
|
||
<LinearLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="42dip" | ||
android:layout_alignBottom="@id/photo" | ||
android:layout_alignLeft="@id/photo" | ||
android:gravity="center_vertical"> | ||
|
||
<TextView | ||
android:id="@+id/name" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="8dip" | ||
android:singleLine="true" | ||
android:ellipsize="end" | ||
android:textColor="@android:color/white" | ||
android:textAppearance="?android:attr/textAppearanceMedium" /> | ||
|
||
<ImageView | ||
android:id="@+id/twitter_button" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="8dip" | ||
android:scaleType="centerInside" | ||
android:src="@drawable/twitter_birdy"/> | ||
|
||
</LinearLayout> | ||
|
||
<ImageView | ||
android:id="@+id/donate_button" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignBottom="@id/photo" | ||
android:paddingRight="4dip" | ||
android:paddingBottom="4dp" | ||
android:layout_alignParentRight="true" | ||
android:scaleType="centerInside" | ||
android:src="@drawable/paypal_donate"/> | ||
|
||
</RelativeLayout> | ||
|
||
</FrameLayout> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.