• 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

Navigation voice changer app for Android


Commit MetaInfo

Revisionadeb07c6e4fab9ca71c600f510800886548f5911 (tree)
Time2013-07-25 20:39:52
AuthorHMML <hmml3939@gmai...>
CommiterHMML

Log Message

Change install list layout (download button to bottom).

Change Summary

Incremental Difference

--- a/res/layout/activity_install_list.xml
+++ b/res/layout/activity_install_list.xml
@@ -1,6 +1,6 @@
1-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
1+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
22 xmlns:tools="http://schemas.android.com/tools"
3- android:id="@+id/LinearLayout1"
3+ android:id="@+id/RelativeLayout1"
44 android:layout_width="match_parent"
55 android:layout_height="match_parent"
66 android:orientation="vertical"
@@ -10,17 +10,21 @@
1010 android:paddingTop="@dimen/activity_vertical_margin"
1111 tools:context=".InstallListActivity" >
1212
13+ <ListView
14+ android:id="@+id/voice_list"
15+ android:layout_width="match_parent"
16+ android:layout_height="wrap_content"
17+ android:layout_above="@+id/btn_download"
18+ android:layout_alignParentTop="true" >
19+
20+ </ListView>
21+
1322 <Button
1423 android:id="@+id/btn_download"
1524 android:layout_width="match_parent"
1625 android:layout_height="wrap_content"
26+ android:layout_alignParentBottom="true"
1727 android:layout_marginBottom="10dp"
1828 android:text="@string/menu_download" />
1929
20- <ListView
21- android:id="@+id/voice_list"
22- android:layout_width="match_parent"
23- android:layout_height="wrap_content" >
24- </ListView>
25-
26-</LinearLayout>
30+</RelativeLayout>