2016-10-25 3 views
0

왜 Linear Layout이 CardView 내부의 전체 공간을 차지하지 않습니까? 미리보기를 사용하고 LinearLayout을 확장하여 CardViews 너비와 일치 시키면 너비를 match_parent (수동으로 시도한) 너비로 설정하지만 그때의 모양으로 돌아갑니다. 즉, 빨간색 배경이 오른쪽으로 가고 오른쪽 TextView가 오른쪽으로 정렬되기를 원합니다.CardView 내의 LinearLayout이 전체 공간을 채우지 못함

enter image description here

<LinearLayout 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="wrap_content"> 

<android.support.v7.widget.CardView 
    android:id="@+id/itemCardView" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_margin="3dp" 
    android:layout_marginBottom="3dp" 
    android:layout_marginTop="3dp" 
    android:background="@color/Mat" 
    android:padding="3dp" 
    app:cardElevation="4dp" 
    app:cardCornerRadius="1dp"> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:animateLayoutChanges="true" 
     android:background="@color/Mat" 
     android:orientation="horizontal" 
     android:padding="3dp" 
     android:paddingLeft="5dp" 
     android:paddingRight="5dp"> 


     <TextView 
      android:id="@+id/textView2" 
      android:layout_width="80dp" 
      android:layout_height="80dp" 
      android:background="@drawable/circle" 
      android:gravity="center" 
      android:text="DEU" 
      android:textAppearance="?android:attr/textAppearanceLarge" /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center_vertical" 
      android:text="Frau Hardt" 
      android:textAppearance="?android:attr/textAppearanceLarge" 
      android:id="@+id/textView4" /> 

     <TextView 
      android:id="@+id/textView3" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="O03" 
      android:textAppearance="?android:attr/textAppearanceLarge" /> 

    </LinearLayout> 

</android.support.v7.widget.CardView> 

</LinearLayout> 

편집 : 최소 폭을 제거하고 모든 방법을 오른쪽으로 이동 match_parent하는 전체 레이아웃의 폭을 설정 한 후. 이제 이름을 가로로 TextView를 가운데에 배치하고 오른쪽의 텍스트보기를 전체 레이아웃의 오른쪽에 정렬 시키려면 어떻게해야합니까?

나는 그림을 포함 시켰는데, 바로 옆에 모두보기에 좋았 기 때문입니다. 나는 코드가 (특히 전체적인 것이 아니기 때문에) 텍스트로 할 필요가 없기를 바란다. 그렇다면 물론 질문을 편집 할 것입니다! 감사합니다.

+1

코드로 XML을 게시 할 수 있습니까 ?? –

+4

최소 너비와 최소 높이를 cardview에서 제거하십시오 –

답변

1

중간 TextView를 이렇게 만드십시오;

<TextView 
    android:layout_width="0dp" 
    android:layout_weight="1" 
    android:layout_height="wrap_content" 
    ... /> 

나머지 중간 공간을 채 웁니다.

또한 fill_parent 대신 match_parent를 사용해야합니다. 사용하지 않는 것이 좋습니다.

+0

이전에는이 ​​방법에 대해 들어 본 적이 없었습니다! 감사 – Crosswind