Ich konnte nicht die gleiche Breite von Textview und Linearlayout machen. Obwohl width match_parent in Textview festgelegt wurde, passt es jedoch nicht zur übergeordneten Breite.Textansicht Breite passt nicht die Breite des Elternteils
Ich sehe diese Beiträge: Android textView width not increasing
Android TextView does not expand to match parent
TextView width match drawableTop width
How to adjust text font size to fit textview
How to adjust text font size to fit textview
Aber mein Problem
nicht behoben ist<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right|center_vertical"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:orientation="horizontal">
<ImageView
android:id="@+id/thumbnail"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:src="@drawable/defaultpicpic" />
<TextView
android:id="@+id/title"
style="@style/textViewItemStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="10dp"
android:paddingTop="10dp" />
</LinearLayout>