2011-07-27 46 views
1

我想重新創建我的Android應用程序之一的脈衝像UI。我想知道如何將透明文字放在像脈衝這樣的圖像上,我怎樣才能在閱讀故事時創建像脈衝一樣的第二屏幕。在這個屏幕中,底部選擇元素如何自動隱藏和被點擊,是完成的活動被改變還是隻有文本改變?如何添加文字在圖像的頂部像在Android的脈衝

查找下面的兩個UI這我提的關於

enter image description here

這怎麼底部導航隱瞞什麼?

enter image description here

感謝pranay

回答

2

用戶RelativeLayout。 這是一個將TextView放置在ImageView頂部並將文本居中放置在圖像上的示例。

<RelativeLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 
    <ImageView 
     android:layout_width="wrap_content" 
     android:id="@+id/MyImage" 
     android:adjustViewBounds="true" 
     android:layout_height="wrap_content"/> 
    <TextView 
     android:id="@+id/TextOnImage" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_centerVertical="true" 
     android:layout_centerHorizontal="true"/> 
</RelativeLayout> 
+0

感謝解決1部分關於無限滾動下降,以及如何隱藏底部滾動導航時,一些身體點擊頂部? –

+0

所以我想如何隱藏底部滾動它是一個滑動抽屜http://www.androidpeople.com/android-sliding-drawer-tutorial現在只想弄清楚無限滾動如何工作,我該如何改變有人點擊任何照片時的內容 –

+0

無限滾動?你在談論畫廊嗎? –

0

你應該使用相對佈局

1

relativeLayout將解決您的問題,因爲它允許您定義每個子元素彼此獨立的位置。只需使用邊距和填充來調整所需的確切佈局。

相關問題