140130訓練
昨日の続き。 foreach foreach (array_expression as $value) Javaの拡張for文みたいな感じ。Javaとは配列と要素の値の順番が逆なので注意。 for (Object ele… 続きを読む »
昨日の続き。 foreach foreach (array_expression as $value) Javaの拡張for文みたいな感じ。Javaとは配列と要素の値の順番が逆なので注意。 for (Object ele… 続きを読む »
あ、見出し大げさな感じですけど別に大した話じゃないです。 寝る前に軽く一本記事を。 Unity使ってて、終了出来なかったり、別Project開こうとして固まったりすることがあってその解決方法を備忘録的なノリで記事にしよう… 続きを読む »
今日からPHPの訓練。 PHPとは 動的にHTMLデータを生成することによって、動的なウェブページを実現することを主な目的としたプログラミング言語。 通常のHTMLではユーザーの指示に対応した反応が出来ない。 サーバーサ… 続きを読む »
Viewの表示・非表示を制御する まずはレイアウトの配置から。 FrameLayoutを既存レイアウト(RelativeLayout)内に挿入→FrameLayout内にImageViewを挿入を二回繰り返して画像を二枚… 続きを読む »
電卓制作しました。 仕様はなし崩しで追加したりしてたのでコードぐちゃぐちゃ・・・・ 四則演算が出来て小数点の計算も出来る。 でもdouble型だからたまに誤差出る(オイ その他にもちょろちょろ仕様ありますが(CとCAの実… 続きを読む »
今日は職業人講話とやら。 昨日は電卓プログラムの自作が中心だったので多分明日あたり書きまする。 Web業界の人がキタ。 Web業界・・・・おうふ。 でも会社の8割はプログラマで開発言語がJavaとPHPらしい。 主なWe… 続きを読む »
フラグメントについて昨日のおさらいというか追記事項。 FragmentActivityは4.0以降は継承しなくてもいいらしい。Activityの継承だけでOKとのこと。 では今日はGoogleMapの使い方。 これは14… 続きを読む »
ユニティちゃんの続報が掲載されています。 オープンソース系ヒロイン「ユニティちゃん」誕生の秘密 コミックマーケット85の物販も成果は上々といったところのようで、リリース前から期待の高さが伺えますね。 それよりも僕が気にな… 続きを読む »
フラグメント Android 3.0から追加された新機能。 画面サイズに応じてアプリがスケールする仕組み。 特にタブレット向けの機能。 らしい。先生の言うことにゃあ、今熱い!これから来る!っていう感じ、とのこと。でも半年… 続きを読む »
テーブルレイアウト レイアウトファイル
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/TableLayout1" android:layout_width="match_parent" android:layout_height="match_parent" android:stretchColumns="1" android:shrinkColumns="1,2" tools:context=".MainActivity" > <!-- stretchColumnsで特定の列を画面幅に合わせて広げる(複数指定可) --> <!-- shrinkColumnsで画面幅を超えた時に列幅を縮めるカラムを指定可能 --> <!-- 指定がないと画面からはみ出る --> <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content" > <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" /> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" /> <Button android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" /> </TableRow> <TableRow android:id="@+id/tableRow2" android:layout_width="wrap_content" android:layout_height="wrap_content" > <Button android:id="@+id/button4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" /> <Button android:id="@+id/button5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" android:layout_column="2" /> <!-- layout_columnでどのカラムに配置するか指定できる --> </TableRow> <TableRow android:id="@+id/tableRow3" android:layout_width="wrap_content" android:layout_height="wrap_content" > <Button android:id="@+id/button7" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" android:layout_span="3" /> <!-- layout_spanで何要素分か指定できる --> </TableRow> </TableLayout> |
列を折りたたむ setColumnCollapsed(int columnIndex, boolean isCol… 続きを読む »