android系统首页用户界面设计

android系统首页用户界面设计,android,android-ui,Android,Android Ui,我需要在android应用程序中做一些用户界面设计,很可能只是为了首页 对于示例:我需要像下图这样做 我试着在布局中放置一个图像并给动作着色,但没有得到完美的效果。如果我得到一些示例或Github帖子或其他对我有帮助的建议。你可以试试这个库 查看更多信息您可以尝试此库 查看更多信息 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:lay

我需要在android应用程序中做一些用户界面设计,很可能只是为了首页

对于示例:我需要像下图这样做

我试着在布局中放置一个图像并给动作着色,但没有得到完美的效果。如果我得到一些示例或Github帖子或其他对我有帮助的建议。

你可以试试这个库


查看更多信息您可以尝试此库


查看更多信息
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<fr.castorflex.android.googleplusprofilepageapp.ParallaxImageView ... />

<LinearLayout ... >
    <TextView ... />
    <TextView ... />
    <TextView ... />
</LinearLayout>

<!-- we add one more container to facilitate the add/remove view -->
<FrameLayout android:id="@+id/tabs_container"
    android:layout_height="48dp"
    android:layout_width="match_parent"
    android:layout_below="@+id/informations_container">

  <HorizontalScrollView
      android:id="@+id/horizontalscrollview"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:scrollbars="none"
      >

      <LinearLayout
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:orientation="horizontal">

          <!-- tabs here -->

      </LinearLayout>
  </HorizontalScrollView>
</FrameLayout>

<ImageView ... />

</RelativeLayout>