liguofeng29’s blog

個人勉強用ブログだっす。

2015-11-01から1日間の記事一覧

AndroidのUI - FrameLayout

activity_main.xml <FrameLayout 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"> </framelayout>

AndroidのUI - TableLayout

tableLayout.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> </linearlayout>

AndroidのUI - LinearLayout

linearLayout.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="right|center_vertical"> </linearlayout>

AndroidのUI - INDEX

レイアウトマネージャ Layout種類説明 LinearLayout ・ViewGroupを継承 ・縦OR横水平のレイアウト ・一列に収まらない場合、自動改行はしない。 ・android:orientation=<horizontal|vertical> 縦か横か ・android:gravity 配置位置top,bottom,left,rithgなどなど) TableLayout ・L</horizontal|vertical>…