1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-22 00:42:16 -05:00

Authentication view: Wrap in ScrollView for smaller screen sizes. Fixes #94.

This commit is contained in:
Sebastian Kaspari 2011-11-20 14:57:37 +01:00
parent 61e1681b03
commit 5c25c86614

View File

@ -19,8 +19,11 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
-->
<LinearLayout
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
@ -93,3 +96,4 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:minWidth="90dp" />
</LinearLayout>
</LinearLayout>
</ScrollView>