안녕하세요. 제가 어떤 기능을, 구현하려고 하고 있는데 이게 쉽게 해결되지가 않아서.. 도움을 좀 얻고자
글을 올렸습니다.
다름이 아니라, 아래의 더블콤보 +디즈니 머그컵... 사진과 + 씨네아트 갤러리 사진과같이,
시간이 지날수록 텍스트들이 변하는 구조이며, 오른쪽의 화살표를 눌렀을 경우에 3번째 이미처럼 위로
쫙 펼쳐지는 구조인데, 이걸 어떻게 먼들어야 할지 .. 너무 막막해서 글을 올렸습니다.
어떻게, 해야 아래와 같이 만들수 있을까요 ㅠ
제가만든 xml부분을 아래에 한번 첨부해 보았습니다.
소스가 조금 넘는 부분은 댓글 부분에 추가해 보았습니다.



<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:background="#363636"
tools:context="ex.real_project.HappyLife">
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar_top"
android:layout_above="@+id/toolbar_bottom"/>
<RelativeLayout
android:id="@+id/toolbar_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<Button
android:id="@+id/toolbar_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:background="@drawable/white_round_button"
android:text="이부분을 어떻게 해주어야 할지 .. "/>
</RelativeLayout>