2013-11-22 3 views
1

나는 기본 배경과 배경의 하단에 배치하고자하는 textview 있지만 textview 특정 수준에 도달하면 배경으로 사라지기 시작합니다 더 아래로 내가 XML에서 textview 놓습니다.배경의 맨 아래쪽에 텍스트 뷰를 놓을 때 배경의 텍스트 배경이 사라지는 이유는 무엇입니까?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
tools:context=".MainActivity" 
android:background="@drawable/main_background" > 
<TextView 
    android:id="@+id/start_button" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="537dp" 
    android:text="@string/start" 
    android:textColor="#000000" 
    android:textSize="20sp" /> 
</RelativeLayout> 

내가 위의 텍스트 만 터치 스크린의 상단 절반은 시작하려면 보여주는 붙여 넣은 코드와 텍스트 뷰. 텍스트의 아래쪽 절반이 내 배경으로 사라졌습니다. 그냥 분명히 나는 ​​내 배경에서 textview를 옮기지 않았다. 내 배경 영역 밖에서 textview를 배치했다는 생각을하는 사람들은 내 배경 영역에있다. 그렇다면 왜 텍스트 뷰를 추가하면 텍스트 뷰 텍스트가 사라지나요?

마진 상단의
+0

처럼 보일 것이다 bottom.It에서 텍스트 뷰를 배치하려는 경우 – Caner

답변

0

사용 marginBottom의 올바른 위치는 다음이 잘 작동합니다 ...

android:layout_marginBottom="20dp" 
0

이 시도 ..

android:layout_marginTop="537dp"android:layout_alignParentBottom="true"

마진가 추가 제거 그 이유는 250 * 250 화면에서이 레이아웃을 본다면 537dp에서 피.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
tools:context=".MainActivity" 
android:background="@drawable/main_background" > 

<TextView 
    android:id="@+id/start_button" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_centerHorizontal="true" 
    android:text="@string/start" 
    android:layout_alignParentBottom="true" 
    android:textColor="#000000" 
    android:textSize="20sp" /> 
</RelativeLayout> 
0

사용이 당신은 당신이 당신의 코드를 게시 할 수있는이

Text view at the bottom

관련 문제