2016-10-25 23 views
0

我是新來的android和我想在android中創建一個聊天應用程序。 到目前爲止,我已經用提交按鈕設計了編輯文本的底部。 像打擊鏈接android向上滑動視圖面板像短信

enter image description here

但我想有一個像下面的鏈接圖像的設計,當我點擊連接按鈕。

我想創建這樣的佈局:

enter image description here

能有人知道如何像上面的鏈接設計?它能夠使用底部表單進行設計嗎?

回答

0
<RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 
     // this relative layout will be ur root layout 

     // Add all your design elements here 

     <FrameLayout 
      android:layout_width="match_parent" 
      android:layout_height="Your Required Size"> 


     </FrameLayout> 
    </RelativeLayout> 

,然後創建一個單獨的ViewPager佈局,對提交按鈕點擊加載並清除碎片,你需要編寫邏輯的ViewPager Seperately