Blame client/Android/Studio/freeRDPCore/src/main/res/layout/dont_show_again_dialog.xml

Packit 1fb8d4
Packit 1fb8d4
/*
Packit 1fb8d4
   Layout for dialogs with a "Don't show again" checkbox
Packit 1fb8d4
Packit 1fb8d4
   Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit 1fb8d4
Packit 1fb8d4
   This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. 
Packit 1fb8d4
   If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit 1fb8d4
*/
Packit 1fb8d4
 -->
Packit 1fb8d4
Packit 1fb8d4
    android:layout_width="fill_parent"
Packit 1fb8d4
    android:layout_height="fill_parent"
Packit 1fb8d4
    android:orientation="vertical">
Packit 1fb8d4
Packit 1fb8d4
    
Packit 1fb8d4
        android:id="@+id/message"
Packit 1fb8d4
        android:layout_width="match_parent"
Packit 1fb8d4
        android:layout_height="wrap_content"
Packit 1fb8d4
        android:maxLines="3"
Packit 1fb8d4
        android:padding="5dip"
Packit 1fb8d4
        android:scrollbars="vertical"
Packit 1fb8d4
        android:singleLine="false"
Packit 1fb8d4
        android:textAppearance="?android:attr/textAppearanceMediumInverse" />
Packit 1fb8d4
Packit 1fb8d4
    
Packit 1fb8d4
        android:id="@+id/checkBox"
Packit 1fb8d4
        style="?android:attr/textAppearanceMediumInverse"
Packit 1fb8d4
        android:layout_width="wrap_content"
Packit 1fb8d4
        android:layout_height="wrap_content"
Packit 1fb8d4
        android:text="@string/dlg_dont_show_again"></CheckBox>
Packit 1fb8d4
Packit 1fb8d4
</LinearLayout>