2017-08-31 16 views
-2

私はあなたのアンドロイドデバイスに表示される最新の電卓のようにアンドロイドにちょうど電卓アプリを作成しています。 TextView以下を作成しました。すべてのマイボタンが表示されています。trignometric機能を追加したいので、ボタンのレイアウトがswippedの場合はtrignometricの機能を表示し、数字ボタンをスワイプするとTextViewが表示されます。あなたは私にそれをどうやって案内してもらえますか?レイアウトの特定の部分をスワイプして後ろにスワイプします

答えて

0

はいできます。 はここにあなたがオレンジの領域は ViewPagerIndicatorで使用されている のように変更されませんあなたの静的なコンテンツを配置青色領域では、それ

レイアウト例

<?xml version="1.0" encoding="utf-8"?> 
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <!-- Static content --> 
    <LinearLayout 
    android:id="@+id/ll_bottom" 
    android:layout_width="match_parent" 
    android:layout_height="100dp" 
    android:layout_alignParentBottom="true" 
    android:background="@color/holo_blue_light" 
    android:orientation="vertical" /> 

    <!-- ViewPager Indicator --> 
    <com.viewpagerindicator.LinePageIndicator 
    android:id="@+id/view_pager_indicator" 
    android:layout_width="fill_parent" 
    android:layout_height="20dp" 
    android:layout_above="@id/ll_bottom" 
    android:background="@color/holo_orange_light" 
    app:lineWidth="10dp" 
    app:selectedColor="#fff" 
    app:strokeWidth="10dp" 
    app:unselectedColor="#888888" /> 

    <!-- ViewPager containing fragments with different views --> 
    <android.support.v4.view.ViewPager 
    android:id="@+id/view_pager" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_above="@id/view_pager_indicator" 
    android:layout_alignParentTop="true" 
    android:background="@color/holo_red_light" /> 

</RelativeLayout> 

ViewPager を行う方法の例であります最後に赤い領域はViewPagerのものです。この領域はスワイプ可能です。

+0

数値表示と三角表示の表示 –

+0

は、相対レイアウトの最後の子である** **に配置する必要があります –

関連する問題