2024-08-12 17:02:52 +09:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButtonToggleGroup
|
|
|
|
|
android:id="@+id/expandableButtons"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:singleSelection="true"
|
2024-09-05 18:11:18 +09:00
|
|
|
android:layout_margin="10dp"
|
|
|
|
|
>
|
2024-08-12 17:02:52 +09:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/expandRss"
|
|
|
|
|
android:layout_width="@dimen/zero"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
2024-09-05 18:38:52 +09:00
|
|
|
android:text="TxtCommand"
|
2024-09-05 18:11:18 +09:00
|
|
|
style="@style/asdda"
|
|
|
|
|
/>
|
2024-08-12 17:02:52 +09:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/expandSystemInfo"
|
|
|
|
|
android:layout_width="@dimen/zero"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:text="@string/system_stats"
|
2024-09-05 18:11:18 +09:00
|
|
|
style="@style/asdda"
|
|
|
|
|
/>
|
2024-08-12 17:02:52 +09:00
|
|
|
</com.google.android.material.button.MaterialButtonToggleGroup>
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2024-09-05 18:11:18 +09:00
|
|
|
android:layout_margin="10dp">
|
2024-08-12 17:02:52 +09:00
|
|
|
<include
|
|
|
|
|
android:id="@+id/feedsRss"
|
2024-09-05 18:11:18 +09:00
|
|
|
android:background="@drawable/base_bg"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
layout="@layout/feeds_rss"/>
|
|
|
|
|
<include
|
|
|
|
|
android:id="@+id/feedsSysInfos"
|
2024-09-05 18:11:18 +09:00
|
|
|
android:background="@drawable/base_bg"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
layout="@layout/feeds_sys_infos"/>
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
<ScrollView
|
2024-09-05 18:11:18 +09:00
|
|
|
android:layout_margin="10dp"
|
|
|
|
|
android:background="@drawable/base_bg"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:fillViewport="true"
|
|
|
|
|
android:scrollbars="none">
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
|
|
|
android:id="@+id/widgetContainer"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"/>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|