ドロップダウンメニューを作る
ワンポイントレッスン、らしいのでメモ。 Androidでドロップダウンメニューを作る場合は「spinner」を使う。 PHPフレームワークを選ぶと簡単な解説が出るサンプルを作った。 解説文はwikipediaの各フレーム… 続きを読む »
ワンポイントレッスン、らしいのでメモ。 Androidでドロップダウンメニューを作る場合は「spinner」を使う。 PHPフレームワークを選ぶと簡単な解説が出るサンプルを作った。 解説文はwikipediaの各フレーム… 続きを読む »
jsoupを使ったwebスクレイピング。 webスクレイピングは他サイトのデータを用いるため、無断転載等著作権の問題が起きる場合があるので利用の際には注意。 ダウンロードを選んで、core libraryとなっているもの… 続きを読む »
あ、見出し大げさな感じですけど別に大した話じゃないです。 寝る前に軽く一本記事を。 Unity使ってて、終了出来なかったり、別Project開こうとして固まったりすることがあってその解決方法を備忘録的なノリで記事にしよう… 続きを読む »
Viewの表示・非表示を制御する まずはレイアウトの配置から。 FrameLayoutを既存レイアウト(RelativeLayout)内に挿入→FrameLayout内にImageViewを挿入を二回繰り返して画像を二枚… 続きを読む »
電卓制作しました。 仕様はなし崩しで追加したりしてたのでコードぐちゃぐちゃ・・・・ 四則演算が出来て小数点の計算も出来る。 でもdouble型だからたまに誤差出る(オイ その他にもちょろちょろ仕様ありますが(CとCAの実… 続きを読む »
フラグメントについて昨日のおさらいというか追記事項。 FragmentActivityは4.0以降は継承しなくてもいいらしい。Activityの継承だけでOKとのこと。 では今日はGoogleMapの使い方。 これは14… 続きを読む »
フラグメント 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… 続きを読む »
サービス サービスとはバックグラウンドで操作するアプリケーションである。 裏で動作し続ける。こわっ・・・・普段当たり前に利用してるアプリもこういうのあるんだよなぁ・・・・後で中身見直すか。 下図はServiceのライフサ… 続きを読む »
昨日に引き続きデータ保存 SDカードへのファイル保存 パーミッションの付与 SDカードを利用する際には、パーミッションの記述が必要です。 AndroidManifest.xmlを開き、 許可タブ > 追加 > Uses … 続きを読む »