Removed deprecated "editable" attribute

Signed-off-by: Balint Kovacs <blint@blint.hu>
This commit is contained in:
Balint Kovacs 2011-05-04 10:06:59 +02:00
parent cacac3cc50
commit 56e9474829
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/scrollView1" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:focusableInTouchMode="true" android:focusable="true" android:longClickable="false">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:inputType="none" android:editable="false" android:id="@+id/logTextView" android:text="@string/reading_logs"/>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:inputType="none" android:id="@+id/logTextView" android:text="@string/reading_logs"/>
</ScrollView>