PlayerAndroid/app/src/main/res/layout/bug_report_card_device_info...

39 lines
1.6 KiB
XML
Raw Normal View History

2018-12-06 10:23:03 +00:00
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2019-07-31 11:56:46 +00:00
xmlns:tools="http://schemas.android.com/tools"
2020-09-07 09:31:27 +00:00
style="@style/MaterialCardViewStroke"
2018-12-06 10:23:03 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="8dp"
app:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="8dp"
android:orientation="vertical">
2019-07-31 11:56:46 +00:00
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
2018-12-06 10:23:03 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="start|center_vertical"
android:paddingLeft="16dp"
android:paddingTop="24dp"
android:paddingRight="16dp"
android:text="@string/device_info"
android:textAppearance="@style/TextViewOverline" />
2018-12-06 10:23:03 +00:00
2019-07-31 11:56:46 +00:00
<androidx.appcompat.widget.AppCompatTextView
2018-12-06 10:23:03 +00:00
android:id="@+id/airTextDeviceInfo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?rectSelector"
2019-07-31 11:56:46 +00:00
android:lineSpacingExtra="8dp"
2018-12-06 10:23:03 +00:00
android:padding="16dp"
2020-09-07 09:31:27 +00:00
android:textAppearance="@style/TextViewBody1"
2019-12-01 15:27:01 +00:00
tools:text="@tools:sample/lorem/random" />
2018-12-06 10:23:03 +00:00
</LinearLayout>
</com.google.android.material.card.MaterialCardView>