カテゴリー:
レイアウト
閲覧数:607 配信日:2014-03-13 20:47
XML属性
XML属性名 | 内容 |
---|---|
android:layout_height | Viewの高さ |
android:layout_width | Viewの幅 |
コード例
「android:layout_height / android:layout_width」で指定可能な値
・数値 dp,sp,px
・match_parent(fill_parent) / wrap_content
<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"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="hello_world" />
</RelativeLayout>