본문 바로가기
안드로이드

안드로이드 - 텍스트뷰(TextView) 항상 화면의 아래에 표시하기

by Dokon Jang 2015. 5. 19.
반응형

안드로이드 앱을 개발하다 보면 특정 View를 일정 높이로 항상 화면의 아래에 표시해야 할 경우가 있습니다.

예를 들면 애드몹이나 애드핏 같은 광고를 붙이 경우가 대표적입니다.

 

테스트뷰(TextView)를 화면의 아래에 표시하는 방법을 알아보겠는데, 여러 View에서도 동일하게 응용하면됩니다.

 

아래의 Layout XML에서 LinearLayoutlayout_weight="1"는 로 지정하고, TextViewheight="wrap_content"로 지정합니다.

<LinearLayout 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:orientation="vertical">

    <LinearLayout
        android:layout_weight="1"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/editText"/>

        <ListView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/listView"
            android:visibility="visible"
            android:layout_gravity="center_horizontal" />
    </LinearLayout>

    <TextView
        android:text="TextView"
        android:textSize="40dp"
        android:background="#0000ff"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>
 

 

실행 결과는 아래와 같습니다.

 

반응형

댓글