SetupWizard: Title and button bar text and padding size changes

Change-Id: If99caaf8d14b0f90c48ea27d9e0a0dee2b37e6e1
This commit is contained in:
cretin45
2015-01-30 14:20:10 -08:00
parent 8ef130516c
commit fa88fbad19
3 changed files with 15 additions and 16 deletions

View File

@@ -14,23 +14,22 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/button_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
android:layout_height="wrap_content">
<Button
style="@style/ButtonBar.Left"
android:id="@+id/prev_button"
android:layout_width="0dp"
android:layout_weight="1"/>
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"/>
<Button
style="@style/ButtonBar.Right"
android:id="@+id/next_button"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/next" />
</LinearLayout>
</RelativeLayout>