Why this layout dont align the content of textview vertically?

Why this layout dont align the content of textview vertically?

I already tried change by code too and few another things in XML, but nothing solved my problem.

Where I change string by code:

TextView textView = (TextView) view.findViewById(R.id.textView);
textView.setText(classePers.getNome());
textView.setGravity(Gravity.CENTER_VERTICAL);

Upvotes: 0

Views: 51

Answers (1)

Androider
Androider

Reputation: 3873

ImageView is inside your RelativeLayout.

Instead, replace the line

   android:gravity="center_vertical"

BY

    android:layout_centerVertical="true"

Upvotes: 3

Related Questions