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

Commit f7875c9a authored by Romain Guy's avatar Romain Guy
Browse files

Deprecate fill_parent and introduce match_parent.

Bug: #2361749.
parent 06b0ee24
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -19,17 +19,17 @@

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <LinearLayout
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:orientation="vertical">

        <TextView
            android:id="@+id/message"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dip"
            android:layout_marginRight="20dip"
@@ -38,7 +38,7 @@

        <CheckBox android:id="@+id/alwaysallowed"
            style="?android:attr/textAppearanceMedium"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="2dip"
            android:text="@string/alwaysallowed" />
+6 −6
Original line number Diff line number Diff line
@@ -19,17 +19,17 @@

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <LinearLayout
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/message"
        android:layout_width="fill_parent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dip"
        android:layout_marginRight="20dip"
@@ -38,7 +38,7 @@

    <EditText
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dip"
        android:layout_marginLeft="20dip"
+5 −5
Original line number Diff line number Diff line
@@ -19,13 +19,13 @@

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ProgressBar android:id="@+android:id/progress"
            android:layout_width="wrap_content"
@@ -33,7 +33,7 @@

        <TextView
            android:id="@+id/progress_info"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dip"
            android:layout_marginRight="20dip"
+5 −5
Original line number Diff line number Diff line
@@ -19,17 +19,17 @@

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <LinearLayout
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:orientation="vertical">

        <TextView
            android:id="@+id/content"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dip"
            android:layout_marginRight="20dip"
+10 −10
Original line number Diff line number Diff line
@@ -19,17 +19,17 @@

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <LinearLayout
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:orientation="vertical">

        <TextView
            android:id="@+id/line1_view"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dip"
            android:layout_marginRight="20dip"
@@ -38,7 +38,7 @@

        <TextView
            android:id="@+id/line2_view"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dip"
            android:layout_marginRight="20dip"
@@ -47,7 +47,7 @@

        <TextView
            android:id="@+id/line3_view"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dip"
            android:layout_marginRight="20dip"
@@ -56,7 +56,7 @@

        <TextView
            android:id="@+id/line4_view"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dip"
            android:layout_marginRight="20dip"
@@ -65,7 +65,7 @@

        <TextView
            android:id="@+id/line5_view"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:layout_marginLeft="20dip"
@@ -75,7 +75,7 @@

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            >

Loading