Remove useless LinearLayout that only holds a RelativeLayout

This commit is contained in:
Daniel Martí 2014-06-26 13:22:05 +02:00
parent 216acf5ae8
commit 72f238ac84

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<LinearLayout <RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent" android:layout_width="fill_parent"
@ -11,11 +11,6 @@
android:paddingRight="10dp" android:paddingRight="10dp"
> >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:baselineAligned="false" >
<TextView android:id="@+id/version" <TextView android:id="@+id/version"
android:textStyle="bold" android:textStyle="bold"
android:maxLines="2" android:maxLines="2"
@ -93,4 +88,3 @@
tools:visible="gone" /> tools:visible="gone" />
</RelativeLayout> </RelativeLayout>
</LinearLayout>