我需要做一個佈局像這樣的畫面:如何在Android中製作LinearLayout設計?
在這裏有國家根據Spinner
值的變化,以及1 EditText
,我們必須把手機號碼。 EditText
需要格式 - 。國家代碼是從API中獲取的,並且數字是由用戶提供的。但是,這應該只顯示爲一個EditText
,而不是TextView
和EditText
在LinearLayout
。
我該如何做到這一點?
<LinearLayout 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"
xmlns:fb="http://schemas.android.com/apk/res-auto"
android:background="@drawable/common_bg"
android:gravity="center_horizontal"
android:orientation="vertical"
tools:context="com.pigeonmarket.PMRegisterActivity">
<!-- Login progress -->
<ProgressBar
android:id="@+id/login_progress"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:visibility="gone" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/registerform"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:layout_marginTop="20dp">
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/toolbar_new"
android:layout_centerHorizontal="true"
android:text="REGISTER"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#fff"
android:textSize="18dp" />
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="40dp"
android:background="@drawable/signup_icon" />
<EditText
android:id="@+id/sname"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginTop="14dp"
android:hint="Name"
android:paddingLeft="15dp"
android:textSize="14dp"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true" />
<Spinner
android:layout_width="match_parent"
android:layout_height="60dp"
style="?android:attr/spinnerItemStyle"
android:id="@+id/fbcountry"
android:paddingLeft="15dp"
android:layout_marginTop="12dp"
android:drawableRight="@drawable/down_arrow"
android:drawablePadding="15dp"
android:paddingRight="15dp"
android:spinnerMode="dialog"
android:layout_below="@+id/sname"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="60dp"
android:paddingLeft="35dp"
android:layout_below="@+id/fbcountry"
android:layout_alignR="@+id/fbcountry"
android:hint="+"
android:layout_marginTop="30dp"
android:textSize="14dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="60dp"
android:paddingLeft="50dp"
android:layout_below="@+id/fbcountry"
android:layout_alignR="@+id/fbcountry"
android:hint="code"
android:layout_marginTop="30dp"
android:textSize="14dp"
android:id="@+id/calling_code" />
<EditText
android:layout_width="wrap_content"
android:layout_height="60dp"
android:paddingLeft="90dp"
android:layout_below="@+id/fbcountry"
android:layout_alignR="@+id/fbcountry"
android:hint="Mobile Number"
android:layout_marginTop="10dp"
android:textSize="14dp"
android:id="@+id/mob" />
</RelativeLayout>
</ScrollView>
</LinearLayout>
這裏是照片後輸入自己的手機號嗎? – user3040153
好吧等我再上傳 – user7316606
PLZ再看一遍我再次上傳 – user7316606