|
@@ -17,10 +17,11 @@
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/upload_files_layout"
|
|
android:id="@+id/upload_files_layout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
- android:orientation="vertical" >
|
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
<include
|
|
<include
|
|
layout="@layout/toolbar_standard" />
|
|
layout="@layout/toolbar_standard" />
|
|
@@ -79,21 +80,23 @@
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/upload_files_btn_cancel"
|
|
android:id="@+id/upload_files_btn_cancel"
|
|
- android:theme="@style/OutlinedButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginEnd="@dimen/standard_half_margin"
|
|
|
|
+ android:layout_marginRight="@dimen/standard_half_margin"
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
android:text="@string/common_cancel"
|
|
android:text="@string/common_cancel"
|
|
- android:layout_marginRight="@dimen/standard_half_margin"
|
|
|
|
- android:layout_marginEnd="@dimen/standard_half_margin"/>
|
|
|
|
|
|
+ android:theme="@style/OutlinedButton"
|
|
|
|
+ app:cornerRadius="120dp" />
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
<com.google.android.material.button.MaterialButton
|
|
- android:id="@+id/upload_files_btn_upload"
|
|
|
|
|
|
+ android:id="@+id/upload_files_btn_upload"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:text="@string/uploader_btn_upload_text"
|
|
android:theme="@style/Button.Primary"
|
|
android:theme="@style/Button.Primary"
|
|
- android:layout_width="wrap_content"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:text="@string/uploader_btn_upload_text" />
|
|
|
|
|
|
+ app:cornerRadius="120dp" />
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|