你今天过得怎么样?
我想知道我今天卡住的东西。我在列表中得到图像和文本的json,我的图像是圆形的。当我得到带有文本的图像时,它看起来很糟糕,因为文本不在imageview下面的中心。我搜索了很多在这,但我没有找到。我刚刚发现重力“中心”和中心在父“真”,我尝试了这两个,但我没有得到解决方案。我的代码是: -
<RelativeLayout 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"
tools:context=".MainActivity>
<de.hdodenhof.circleimageview.CircleImageView
android:layout_width="110dp"
android:layout_height="110dp"
android:layout_marginTop="70dp"
android:layout_marginStart="15dp"
android:id="@+id/img_design" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/img_design"
android:id="@+id/design_color"
android:text=" "
android:layout_centerInParent="true"
android:textStyle="bold"
android:textSize="15sp" />
</RelativeLayout>
我想在图像中间自动设置文本,因为长度不是固定的文本:
IMAGEVIEW
text
请指导我,建议我并解决这个问题,如果您对我的问题有任何疑问,请问我。谢谢。
您可以使用以下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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/img_design"
android:layout_width="110dp"
android:layout_height="110dp"
android:layout_marginStart="15dp"
android:layout_marginEnd="15dp"
android:layout_marginTop="10dp"
tools:src="@drawable/profile_sidemenu"/>
<TextView
android:id="@+id/design_color"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_below="@+id/img_design"
android:layout_centerInParent="true"
tools:text="This is sample text"
android:textSize="15sp"
android:textStyle="bold" />
</RelativeLayout>
输出:
使用这个,它会像魅力一样工作。为imageview和textview创建并分离父级,如下所示,然后尝试使用您正在使用的自己的圆形图像视图
在这里输入代码// 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="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/img_design"
android:layout_width="110dp"
android:layout_height="110dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:src="@color/white"
/>
<TextView
android:id="@+id/textView7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:text="TextView"
android:layout_centerInParent="true"
android:layout_below="@+id/img_design" />
</RelativeLayout>
只是查看代码,_android:layout_centerInParent_对我没有意义,而你想要水平居中文本。此外,如果您希望圆形图像和文本都是以其父对象为中心的组,则应添加一个包围两者的布局,并将其置于父级中心。
尝试将<CircleImageView>
和<TextView>
包裹在垂直方向的<LinearLayout>
中,并将<LinearLayout>
中心包裹起来
试试这个
<?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="wrap_content">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/img_design"
android:layout_width="110dp"
android:layout_height="110dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textView7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:text="TextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/img_design" />
</android.support.constraint.ConstraintLayout>
如果您将wrap_content
的宽度保持为相对值而android:layout_centerHorizontal="true"
为TextView而不是父级中心,则您的布局将有效。如果你想全屏,那么使用下面的布局
<RelativeLayout 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">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/img_design"
android:layout_width="110dp"
android:layout_height="110dp"
android:layout_marginStart="15dp"
android:layout_marginTop="70dp" />
<TextView
android:id="@+id/design_color"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text=" "
android:textSize="15sp"
android:textStyle="bold" />
</LinearLayout>
</RelativeLayout>
请尝试以下XML代码
<LinearLayout
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:orientation="vertical"
android:layout_height="match_parent"
tools:context=".MainActivity">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/img_design"
android:layout_width="110dp"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:layout_height="110dp" />
<TextView
android:id="@+id/design_color"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:layout_height="wrap_content" />
</LinearLayout>