* #31728: dynamic codec status
diff --git a/res/layout/frag_account_creation.xml b/res/layout/frag_account_creation.xml
index 7bb9f98..acb0623 100644
--- a/res/layout/frag_account_creation.xml
+++ b/res/layout/frag_account_creation.xml
@@ -45,9 +45,9 @@
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:hint="@string/prompt_password"
-            android:imeActionId="@+id/login"
+            android:imeActionId="@+id/register"
             android:imeActionLabel="@string/action_create_short"
-            android:imeOptions="actionUnspecified"
+            android:imeOptions="actionGo"
             android:inputType="textPassword"
             android:maxLines="1"
             android:singleLine="true"
diff --git a/res/layout/frag_contact_list.xml b/res/layout/frag_contact_list.xml
index 9cd89c9..f14bf10 100644
--- a/res/layout/frag_contact_list.xml
+++ b/res/layout/frag_contact_list.xml
@@ -50,7 +50,7 @@
         android:focusableInTouchMode="true" />
 
     <TextView
-        android:id="@+id/empty_list_contact"
+        android:id="@android:id/empty"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_gravity="center"
diff --git a/res/layout/item_codec.xml b/res/layout/item_codec.xml
index 7b9679e..078b9ae 100644
--- a/res/layout/item_codec.xml
+++ b/res/layout/item_codec.xml
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:id="@+id/codec_background"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:padding="4dp" >
@@ -22,23 +23,23 @@
         android:layout_below="@+id/codec_name"
         android:layout_marginLeft="4dp"
         android:textAppearance="?android:attr/textAppearanceSmall" />
-    
-        <TextView
+
+    <TextView
         android:id="@+id/codec_bitrate"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
-        android:layout_toRightOf="@+id/codec_samplerate"
         android:layout_below="@+id/codec_name"
         android:layout_marginLeft="4dp"
+        android:layout_toRightOf="@+id/codec_samplerate"
         android:textAppearance="?android:attr/textAppearanceSmall" />
-        
-                <TextView
+
+    <TextView
         android:id="@+id/codec_channels"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
-        android:layout_toRightOf="@+id/codec_bitrate"
         android:layout_below="@+id/codec_name"
         android:layout_marginLeft="4dp"
+        android:layout_toRightOf="@+id/codec_bitrate"
         android:textAppearance="?android:attr/textAppearanceSmall" />
 
     <CheckBox