gpt4 book ai didi

android - 我怎样才能在 icon 和 editText 下有一条长线,并在 editText 的末尾留出一些空间?

转载 作者:行者123 更新时间:2023-11-29 19:32:40 26 4
gpt4 key购买 nike

我想要一个看起来像这样的对话框

Desired Dialog Look

我尝试编写代码,但对话框的设计看起来很奇怪。

How can I have a long line under icon and editText and also leave some space at the end of editText?

enter image description here

xml布局

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">


<ImageView
android:id="@+id/img"
android:layout_width="35dp"
android:layout_height="35dp"
android:src="@mipmap/add_new_task"
android:layout_marginLeft="13dp"/>

<EditText
android:id="@+id/edtText"
android:layout_marginLeft="70dp"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:hint="Add a new task"/>

<ImageView
android:id="@+id/dateImg"
android:layout_width="35dp"
android:layout_height="35dp"
android:src="@mipmap/imgdate"
android:layout_below="@+id/edtText"
android:layout_marginLeft="13dp"/>

<EditText
android:id="@+id/date"
android:layout_marginLeft="70dp"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:layout_below="@+id/edtText"
android:hint="Date"/>

<ImageView
android:id="@+id/timeImg"
android:layout_width="35dp"
android:layout_height="35dp"
android:src="@mipmap/imgtime"
android:layout_below="@+id/date"
android:layout_marginLeft="13dp"/>

<EditText
android:id="@+id/time"
android:layout_marginLeft="70dp"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:layout_below="@+id/date"
android:hint="Time"/>

<Button
android:id="@+id/cancelBtn"
android:background="@color/red"
android:textColor="@color/white"
android:text="Cancel"
android:layout_width="165dp"
android:layout_height="40dp"
android:layout_below="@+id/time"
android:layout_marginLeft="13dp"/>

<Button
android:id="@+id/okBtn"
android:background="@color/light_sky_blue"
android:textColor="@color/white"
android:text="Save"
android:layout_width="165dp"
android:layout_height="40dp"
android:layout_below="@+id/time"
android:layout_marginLeft="190dp"/>


</RelativeLayout>

代码

 @Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_add_task:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
LayoutInflater inflater = getLayoutInflater();
builder.setView(inflater.inflate(R.layout.dialog_with_edittext,null));
builder.show();
return true;

default:
return super.onOptionsItemSelected(item);
}
}

最佳答案

试试这个 xml 我更改了相对布局上的填充,以便它从顶部/底部和侧面看起来不奇怪,还使用我在评论中提供的链接添加了行(Vertical line using XML drawable)并且还居中了按钮有点,因为它们看起来有点偏离内部的另一个相对 View ,并删除了 editTexts 的下划线

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:paddingTop="8dp"
android:paddingBottom="5dp"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:layout_height="wrap_content">


<ImageView
android:id="@+id/img"
android:layout_width="35dp"
android:layout_height="35dp"
android:background="#000"
android:layout_marginLeft="13dp"/>

<EditText
android:layout_marginTop="11dp"
android:layout_marginBottom="11dp"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/img"
android:background="@android:color/transparent"
android:id="@+id/edtText"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:hint="Add a new task"/>
<View
android:layout_below="@id/edtText"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#000"
android:layout_marginTop="-4dp"/>
<ImageView
android:id="@+id/dateImg"
android:layout_width="35dp"
android:layout_height="35dp"
android:background="#000"
android:layout_below="@+id/edtText"
android:layout_marginLeft="13dp"/>

<EditText
android:layout_marginTop="11dp"
android:layout_marginBottom="11dp"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/dateImg"
android:background="@android:color/transparent"
android:id="@+id/date"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:layout_below="@+id/edtText"
android:hint="Date"/>
<View
android:layout_below="@id/date"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#000"
android:layout_marginTop="-4dp"/>

<ImageView
android:id="@+id/timeImg"
android:layout_width="35dp"
android:layout_height="35dp"
android:background="#000"
android:layout_below="@+id/date"
android:layout_marginLeft="13dp"/>

<EditText
android:layout_marginTop="11dp"
android:layout_marginBottom="11dp"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/timeImg"
android:background="@android:color/transparent"
android:id="@+id/time"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:layout_below="@+id/date"
android:hint="Time"/>

<View
android:layout_below="@id/time"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#000"
android:layout_marginTop="-4dp"/>

<RelativeLayout
android:layout_centerHorizontal="true"
android:layout_below="@+id/time"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_marginTop="5dp"
android:id="@+id/cancelBtn"
android:background="#fc2a2a"
android:textColor="#ffffff"
android:text="Cancel"
android:layout_width="165dp"
android:layout_height="40dp"
android:layout_marginLeft="15dp"
android:layout_alignParentLeft="true"/>

<Button
android:layout_marginTop="5dp"
android:id="@+id/okBtn"
android:background="#64e3ff"
android:textColor="#fff"
android:text="Save"
android:layout_width="165dp"
android:layout_height="40dp"
android:layout_marginRight="15dp"
android:layout_alignParentRight="true"/>
</RelativeLayout>

</RelativeLayout>

enter image description here

关于android - 我怎样才能在 icon 和 editText 下有一条长线,并在 editText 的末尾留出一些空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39677944/

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