XMLを使用して制約レイアウトをデザインしています。OpenSansBTextViewのAndroid中心のテキスト
私にはOpenSansBTextView
があり、テキストを中央に配置する必要があります。 は水平方向にに、は垂直方向にではありません。どうしてか分かりません。ここに私のXMLファイルがあります。私の間違いを見ることができますか?あなたがで動作するように多くのコードを提供していない
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent"
android:id="@+id/dashboard">
<com.doyousonder.android.utils.RochesterTextView
android:id="@+id/YourActivity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginStart="25dp"
app:layout_constraintVertical_bias="0.34"
android:text="@string/YourActivity"
android:textColor="@color/colorPrimaryMoreDark"
android:textSize="23sp" />
<com.doyousonder.android.utils.OpenSansRTextView
android:id="@+id/YouVoted"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/YourActivity"
android:layout_marginTop="15dp"
android:layout_marginStart="20dp"
android:text="@string/YouVoted"
android:textColor="@color/colorPrimaryMoreDark"
android:textSize="15sp" />
<com.doyousonder.android.utils.OpenSansSBTextView
android:id="@+id/VoteCount"
android:layout_width="29dp"
android:layout_height="35dp"
app:layout_constraintStart_toEndOf="@+id/YouVoted"
app:layout_constraintTop_toTopOf="@+id/YouVoted"
app:layout_constraintBottom_toBottomOf="@+id/YouVoted"
android:layout_marginStart="5dp"
android:background="@drawable/more_curved_edge_button_button_primarycolor_background"
android:gravity="center"
android:text="1"
android:textAlignment="center"
android:textSize="25sp" />
opensansbtextviewとは何ですか? –
@AbdulWaheed通常のテキストビューは、いくつかの追加機能でのみ再設計されました –
あなたが使用しているカスタムテキストビュー用のコードを投稿してください –