我的登录页面有问题。不知道安排视图,因为我发布了我在Mobile和Tab中尝试过的代码。 提前致谢。 任何帮助将不胜感激。
下面我发布了Layout的代码。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/activity_sign_in_back">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/rlBottomLayout">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/ivLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:src="@drawable/activity_sign_in_logo" />
<EditText
android:id="@+id/etUsername"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/ivLogo"
android:layout_margin="20dp"
android:background="@drawable/edittext_unfocus_background"
android:padding="15dp" />
<EditText
android:id="@+id/etPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/etUsername"
android:layout_margin="20dp"
android:background="@drawable/edittext_unfocus_background"
android:padding="15dp" />
<LinearLayout
android:id="@+id/llRemember"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/tvNoAccount"
android:layout_below="@+id/etPassword"
android:visibility="invisible"
>
<ImageView
android:id="@+id/ivCheckBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:src="@drawable/activity_check_box_remember_me" />
<TextView
android:id="@+id/tvRememberView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:gravity=""
android:text="@string/text_message_remember_me"
android:textColor="@color/white"
android:textSize="@dimen/text_small_size" />
</LinearLayout>
<TextView
android:id="@+id/tvSignIn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/llRemember"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:background="@drawable/view_white_border"
android:paddingBottom="10dp"
android:paddingLeft="40dp"
android:paddingRight="40dp"
android:paddingTop="10dp"
android:text="@string/text_message_sign_in"
android:textColor="@color/white"
android:textSize="@dimen/text_large_size"
android:onClick="signIn"/>
<TextView
android:id="@+id/tvForgotPassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tvSignIn"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dp"
android:layout_marginTop="20dp"
android:text="@string/text_message_forgot_password"
android:textColor="@color/white"
android:textSize="@dimen/text_large_size" />
</RelativeLayout>
</ScrollView>
<LinearLayout
android:id="@+id/rlBottomLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginTop="15dp"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/tvNoAccount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_gravity="center"
android:gravity="center"
android:text="@string/text_message_no_account"
android:textColor="@color/white"
/>
<TextView
android:id="@+id/tvSignUp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tvNoAccount"
android:layout_centerHorizontal="true"
android:layout_gravity="center"
android:layout_marginBottom="15dp"
[enter image description here][1]android:background="@drawable/view_white_background"
android:padding="15dp"
android:text="@string/text_message_sign_up"
android:onClick="signUpActivity"/>
</RelativeLayout>
</ScrollView>
</LinearLayout>
</RelativeLayout>
我附上的图像是真实的和我制作的图像。我试图使图像真实但无法成功。如果有人知道如何制作这个,请帮助我。我实际上是在过去4个小时内尝试这个。
答案 0 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:fillViewport="true"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#acacac">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/lin_bottom"
android:layout_alignParentBottom="true"
android:orientation="vertical">
<TextView
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Dont have account?"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Signup Now"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/lin_bottom"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"/>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="UserNAme"/>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint= "password"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Remember Me"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Sign In" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Forgot Password?"/>
</LinearLayout>
</RelativeLayout>
</ScrollView>
更新请检查