2016-04-15 12 views
0

小さなレイアウトバーにテキストフィールドやボタンを挿入しようとしていますが、何らかの理由でそれが表示されません。小さなレイアウトにテキストフィールドを追加しようとしていますか?

<?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="match_parent" 
    android:background="#d1cbcb"> 


    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="50dp" 
     android:background="#767eca"> 

     <TextView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:text = "Ankosh" 
      android:textColor="#ffffff" 
      android:textSize="20sp"></TextView> 
</RelativeLayout> 
    </LinearLayout> 
+0

正確に表示されないものはありますか? –

+0

backgroundの後にrelativeLayoutを閉じるのはなぜですか?テキストビューが内部にある必要がある場合は、その必要はありません。 – Opiatefuchs

+0

線形レイアウトに垂直または水平方向を指定します。 テキストビューに高さを指定する場合は、親レイアウト以外のテキストビュー自体にそれを提供する方がよいでしょう。 – Ankita

答えて

1

あなたは内側の相対的なレイアウトの高さを変更したり、wrap_contentするwrap_content

<?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="match_parent" 
    android:background="#d1cbcb"> 


    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="#767eca"> 

     <TextView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:text = "Ankosh" 
      android:textColor="#ffffff" 
      android:textSize="20sp"></TextView> 
</RelativeLayout> 
    </LinearLayout> 
+1

この回答を確認してください。 –

0

変更layout_heightとしてそれをマークする必要があり、あなたがしたい場合はTextViewの高さは、使用50dpのTextView

内部

こと

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="#767eca"> 

    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="50dp" 
     android:text = "Ankosh" 
     android:textColor="#ffffff" 
     android:textSize="20sp"></TextView> 

関連する問題