Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 645354b4 authored by cretin45's avatar cretin45
Browse files

SetupWizard: Fixup layout and use sim graphic based on config

Change-Id: I73dd665a526c8a025e82a6f839d3dc9055742ed1
parent d13e105d
Loading
Loading
Loading
Loading
+63 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2015 The CyanogenMod Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

    <include layout="@layout/header" />

    <FrameLayout android:id="@+id/page"
                 android:layout_width="match_parent"
                 android:layout_height="0dp"
                 android:layout_weight="1">

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            style="@style/PageContent">

            <TextView
                android:layout_width="0px"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:id="@+id/sim_missing"
                style="@style/PageSummaryText"
                android:textSize="15sp"
                android:layout_marginBottom="@dimen/summary_margin_bottom"
                android:paddingLeft="@dimen/content_margin_left"
                android:paddingRight="@dimen/content_margin_right"
                android:text="@string/sim_missing_summary" />

            <ImageView
                android:id="@+id/sim_slot_image"
                android:layout_width="0px"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:layout_gravity="right"
                android:gravity="right"
                android:scaleType="fitEnd"
                android:src="@drawable/sim_back"/>

        </LinearLayout>
    </FrameLayout>
</LinearLayout>



+25 −26
Original line number Diff line number Diff line
@@ -26,14 +26,10 @@
                 android:layout_height="0dp"
                 android:layout_weight="1">

        <ScrollView android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:fillViewport="true">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
                android:layout_height="wrap_content"
            android:layout_height="match_parent"
            style="@style/PageContent">

            <TextView
@@ -48,13 +44,16 @@
                android:text="@string/sim_missing_summary" />

            <ImageView
                android:id="@+id/sim_slot_image"
                android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                android:layout_height="0px"
                android:layout_weight="1"
                android:layout_gravity="right"
                android:gravity="right"
                android:scaleType="fitEnd"
                android:src="@drawable/sim_back"/>

        </LinearLayout>
        </ScrollView>
    </FrameLayout>
</LinearLayout>

+11 −1
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ import android.app.Fragment;
import android.app.FragmentManager;
import android.content.Context;
import android.os.Bundle;
import android.widget.ImageView;

import com.cyanogenmod.setupwizard.R;
import com.cyanogenmod.setupwizard.ui.SetupPageFragment;
@@ -64,7 +65,16 @@ public class SimCardMissingPage extends SetupPage {
    public static class SimCardMissingFragment extends SetupPageFragment {

        @Override
        protected void initializePage() {}
        protected void initializePage() {
            final boolean simOnBack = getResources().getBoolean(
                    R.bool.sim_back);
            ImageView simLogo = ((ImageView)mRootView.findViewById(R.id.sim_slot_image));
            if (simOnBack) {
                simLogo.setImageResource(R.drawable.sim_back);
            } else {
                simLogo.setImageResource(R.drawable.sim_side);
            }
        }

        @Override
        protected int getLayoutResource() {