我是Android的新手,我想为所有屏幕尺寸构建一个移动应用程序,我目前面临着平板电脑尺寸的问题。当我将它应用于10.1英寸屏幕时,设计非常小,我试图解决它并且没有发生任何事情:'(。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/registrtion_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bkg"
tools:context=".registrationActivity" >
<RelativeLayout
android:id="@+id/registration_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
<RelativeLayout
android:id="@+id/registration_box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/register_bkg"
android:padding="15dp" >
<EditText
android:id="@+id/regMaymoIdEdtTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="65dp"
android:background="@drawable/change_pass_text_box"
android:hint="@string/maymoId"
android:inputType="number"
android:padding="15dp" >
<requestFocus />
</EditText>
<EditText
android:id="@+id/regPhoneEdtTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/regMaymoIdEdtTxt"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:background="@drawable/change_pass_text_box"
android:hint="@string/phone_number"
android:inputType="phone"
android:padding="15dp" />
<Button
android:id="@+id/regSubmitBtn"
android:layout_width="100dp"
android:layout_height="35dp"
android:layout_below="@+id/regPhoneEdtTxt"
android:layout_centerHorizontal="true"
android:layout_marginBottom="15dp"
android:layout_marginTop="15dp"
android:background="@drawable/change_pass_submit_button" />
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:0)
您可以使用以下资源文件夹为屏幕较大的设备创建布局:
7英寸平板电脑 RES \布局sw600dp 10英寸平板电脑 RES \布局sw720dp答案 1 :(得分:0)
如需完整参考资料,请查看this