• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Simple Notepad Application for Android OS


Commit MetaInfo

Revision57463d652b36b98bc8f67853c1c9d60eb4878184 (tree)
Time2012-09-04 10:00:46
AuthorMasahiko, SAWAI <say@user...>
CommiterMasahiko, SAWAI

Log Message

横画面用の about_app_activity.xml を追加

Change Summary

Incremental Difference

--- /dev/null
+++ b/notepad-app/res/layout-land/about_app_activity.xml
@@ -0,0 +1,45 @@
1+<?xml version="1.0" encoding="utf-8"?>
2+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+ android:layout_width="fill_parent"
4+ android:layout_height="fill_parent"
5+ android:paddingTop="@dimen/about_app_paddingTop"
6+ android:paddingBottom="@dimen/about_app_paddingBottom"
7+ android:paddingRight="@dimen/about_app_paddingRight"
8+ android:paddingLeft="@dimen/about_app_paddingLeft"
9+>
10+ <LinearLayout
11+ android:orientation="horizontal"
12+ android:layout_width="wrap_content"
13+ android:layout_height="fill_parent"
14+ android:layout_gravity="center_horizontal"
15+ >
16+ <!-- app icon -->
17+ <FrameLayout
18+ android:layout_width="wrap_content"
19+ android:layout_height="fill_parent"
20+ android:layout_weight="0"
21+ android:layout_gravity="center_vertical"
22+ android:padding="@dimen/about_app_icon_frame_padding"
23+ >
24+ <include layout="@layout/about_app_icon" />
25+ </FrameLayout>
26+
27+ <!-- separator line -->
28+ <View style="@style/vline"
29+ android:layout_margin="10dip"
30+ />
31+
32+ <!-- app infomation -->
33+ <FrameLayout
34+ android:layout_width="wrap_content"
35+ android:layout_height="fill_parent"
36+ android:layout_weight="0"
37+ android:layout_gravity="center_vertical"
38+ android:padding="@dimen/about_app_info_frame_padding"
39+ >
40+ <include layout="@layout/about_app_info" />
41+ </FrameLayout>
42+
43+ </LinearLayout>
44+
45+</FrameLayout>
--- a/notepad-app/res/layout/about_app_activity.xml
+++ b/notepad-app/res/layout/about_app_activity.xml
@@ -39,6 +39,7 @@
3939 >
4040 <include layout="@layout/about_app_info" />
4141 </FrameLayout>
42+
4243 </LinearLayout>
43-</FrameLayout>
4444
45+</FrameLayout>
\ No newline at end of file