gpt4 book ai didi

android - 我如何调整空间和文件的整体外观,使其看起来更像图片?

转载 作者:行者123 更新时间:2023-11-29 23:06:05 25 4
gpt4 key购买 nike

我正在尝试让我的登录页面更像图片:https://ibb.co/DKmTnHH它目前看起来像这样:https://ibb.co/0MV0rgj

我似乎无法从图片中弄清楚 View 之间的边距是多少?你是怎么想出来的,我如何让我的编辑文本从侧面变圆以及所有的小细节?

<?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"
>

<ImageView
android:id="@+id/logo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/logo"
android:scaleType="fitXY"/><!--set scale type fit xy-->

<EditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_above="@id/password"
android:hint="اسم المستخدم" />

<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_above="@id/signin"
android:ems="10"
android:hint="كلمة السر" />

<ImageButton
android:id="@+id/signin"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_centerInParent="true"
android:layout_above="@id/forgetpassword"
android:src="@drawable/Login-button" />

<ImageButton
android:layout_width="match_parent"
android:layout_height="60dp"
android:id="@+id/forgetpassword"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:layout_above="@id/noaccount"
android:src="@drawable/Forget-pass"/>

<ImageButton
android:id="@+id/noaccount"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_above="@id/footer"
android:layout_centerInParent="true"
android:src="@drawable/Dont-have-acc" />


<ImageView
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="60dp"
android:src="@drawable/footer-image"
android:layout_alignParentBottom="true"

android:scaleType="fitXY"/><!--set scale type fit xy-->
</RelativeLayout>

最佳答案

您可以使用 ConstraintLayoutChainsGuidelines无需使用固定大小的边距即可获得响应式屏幕(使您的屏幕变成非响应式屏幕)。

这是一个例子:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
android:id="@+id/button"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button2"
app:layout_constraintEnd_toStartOf="@+id/guideline32"
app:layout_constraintStart_toStartOf="@+id/guideline33"
app:layout_constraintTop_toTopOf="@+id/guideline31" />

<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button3"
app:layout_constraintEnd_toEndOf="@+id/button"
app:layout_constraintStart_toStartOf="@+id/button"
app:layout_constraintTop_toBottomOf="@+id/button" />

<Button
android:id="@+id/button3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/textView11"
app:layout_constraintEnd_toEndOf="@+id/button"
app:layout_constraintStart_toStartOf="@+id/button"
app:layout_constraintTop_toBottomOf="@+id/button2" />

<TextView
android:id="@+id/textView11"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="TextView"
app:layout_constraintBottom_toTopOf="@+id/textView12"
app:layout_constraintEnd_toEndOf="@+id/button"
app:layout_constraintStart_toStartOf="@+id/button"
app:layout_constraintTop_toBottomOf="@+id/button3" />

<TextView
android:id="@+id/textView12"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="TextView"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/button"
app:layout_constraintStart_toStartOf="@+id/button"
app:layout_constraintTop_toBottomOf="@+id/textView11" />

<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toTopOf="@+id/guideline31"
app:layout_constraintEnd_toStartOf="@+id/guideline32"
app:layout_constraintStart_toStartOf="@+id/guideline33"
app:layout_constraintTop_toTopOf="parent"
tools:srcCompat="@tools:sample/avatars[10]" />

<android.support.constraint.Guideline
android:id="@+id/guideline31"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_begin="200dp"
app:layout_constraintGuide_percent="0.3" />

<android.support.constraint.Guideline
android:id="@+id/guideline32"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_begin="352dp"
app:layout_constraintGuide_percent="0.9" />

<android.support.constraint.Guideline
android:id="@+id/guideline33"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_begin="20dp"
app:layout_constraintGuide_percent="0.1" />
</android.support.constraint.ConstraintLayout>

它看起来像这样:

enter image description here


对于圆形按钮外观,您可以使用自定义形状,创建一个新的可绘制文件:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="-90"
android:centerColor="#F2F2F2"
android:endColor="#ADA996"
android:startColor="#DBDBDB" />
<stroke
android:width="2dp"
android:color="#000000" />
<corners android:radius="8dp" />
<padding
android:bottom="4dp"
android:left="4dp"
android:right="4dp"
android:top="4dp" />

现在只需将其应用到您的 View 中:

 android:background="@drawable/frame"

这就是自定义外观的 View :

enter image description here

关于android - 我如何调整空间和文件的整体外观,使其看起来更像图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56512354/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com