forked from novoda/android-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IDs of clicked carousel elements are now shown when clicked.
- Loading branch information
Kevin McDonagh
committed
Apr 8, 2012
1 parent
6daa232
commit f60a269
Showing
7 changed files
with
48 additions
and
138 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
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,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/content" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:gravity="center_horizontal" > | ||
|
||
<TextView | ||
android:id="@+id/featured" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:background="#FFFFFF" | ||
android:textColor="#000000" | ||
android:gravity="center" | ||
android:textSize="200sp" | ||
android:text="1" | ||
android:clickable="true" | ||
android:focusable="true" /> | ||
|
||
<FrameLayout | ||
android:id="@+id/carousel" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:background="#88000000" | ||
android:layout_gravity="bottom" | ||
android:focusable="true" /> | ||
|
||
</FrameLayout> |
File renamed without changes.
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 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