6.1.0 - 变更包名 新增投影媒体权限开关/tasks模块 扩展内置模块方法 重构内置模块及构建脚本
This commit is contained in:
107
app/src/main/res/layout/activity_about_function_buttons.xml
Normal file
107
app/src/main/res/layout/activity_about_function_buttons.xml
Normal file
@@ -0,0 +1,107 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="16dp"
|
||||
android:background="@android:color/transparent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="16dp"
|
||||
android:background="?selectableItemBackground"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal"
|
||||
android:baselineAligned="false">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/about_functions_button_licenses"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="80dp"
|
||||
android:orientation="vertical"
|
||||
android:background="?selectableItemBackground"
|
||||
android:gravity="center"
|
||||
android:layout_marginHorizontal="3dp"
|
||||
android:focusable="true"
|
||||
android:clickable="true">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="4dp"
|
||||
android:src="@drawable/ic_about_license"
|
||||
android:contentDescription="@string/desc_about_functions_button_licenses" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginVertical="6dp"
|
||||
android:text="@string/text_about_functions_licenses"
|
||||
android:textSize="13sp"
|
||||
android:textColor="#414141" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/about_functions_button_update"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="80dp"
|
||||
android:orientation="vertical"
|
||||
android:background="?selectableItemBackground"
|
||||
android:gravity="center"
|
||||
android:layout_marginHorizontal="3dp"
|
||||
android:focusable="true"
|
||||
android:clickable="true">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="4dp"
|
||||
android:src="@drawable/ic_about_update"
|
||||
android:contentDescription="@string/desc_about_functions_button_update" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginVertical="6dp"
|
||||
android:text="@string/text_about_functions_update"
|
||||
android:textSize="13sp"
|
||||
android:textColor="#414141" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/about_functions_button_feedback"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="80dp"
|
||||
android:orientation="vertical"
|
||||
android:background="?selectableItemBackground"
|
||||
android:gravity="center"
|
||||
android:layout_marginHorizontal="3dp"
|
||||
android:focusable="true"
|
||||
android:clickable="true">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="4dp"
|
||||
android:src="@drawable/ic_about_feedback"
|
||||
android:contentDescription="@string/desc_about_functions_button_feedback" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginVertical="6dp"
|
||||
android:text="@string/text_about_functions_feedback"
|
||||
android:textSize="13sp"
|
||||
android:textColor="#414141" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
Reference in New Issue
Block a user