2016-09-10 59 views
0

我需要開發Android應用程序 它有多種形式來填充,然後一個提交按鈕,以保存所有窗體。 任何想法使這種形式連接在一起? 謝謝。在android應用程序中用一個按鈕提交多個表單?

[編輯] 連接在一起我的意思是我可以通過一次點擊來獲取所有這些。

+0

你是什麼意思由連接在一起?你想得到每一個的結果? –

+0

@TiagoOliveira是的,我需要使用一個按鈕來獲得每個人的結果。 – Tefa

回答

0
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/container" 
android:orientation="vertical" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
> 

<ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

<LinearLayout 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <EditText 
     android:hint="First Name" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:id="@+id/editTextFisrtName"/> 

    <EditText 
     android:id="@+id/editTextLastName" 
     android:hint="Last Name" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" /> 


    <Button 
     android:id="@+id/submitButton" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:text="submit"/> 
    </LinearLayout> 
</ScrollView> 

+0

我很抱歉,我認爲我選擇的單詞是錯誤的,我的意思是表單中的一個表單有多個編輯文本,但您的XML文件卻是我的應用程序中的一個表單,我應該有多個像這樣的文檔 – Tefa

+0

所以你的問題不是構建表單,而是具有多種形式,你可以使用viewpager或多個碎片,或者你也可以使用scrollview並將所有表單放置在你的活動中有多少種形式? –

+0

是的,我認爲你現在明白了我的意思,我對設計的外觀沒有任何問題,所以你能告訴我什麼是你說的最好的方式(viewPager,多片段,scrollView)以及最簡單的方法。 – Tefa

相關問題