-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
63 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,54 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:orientation="vertical" | ||
android:paddingHorizontal="25dp"> | ||
android:layout_height="match_parent"> | ||
|
||
<TextView | ||
<LinearLayout | ||
android:id="@+id/prefs_container" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="start|center" | ||
android:text="已添加" | ||
android:textAlignment="viewStart" | ||
android:textAppearance="@style/TextAppearance.PreferenceCategory" /> | ||
android:orientation="vertical" | ||
android:paddingHorizontal="25dp"> | ||
|
||
<androidx.recyclerview.widget.RecyclerView | ||
android:id="@android:id/list" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:overScrollMode="never" /> | ||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="start|center" | ||
android:text="已添加" | ||
android:textAlignment="viewStart" | ||
android:textAppearance="@style/TextAppearance.PreferenceCategory" /> | ||
|
||
<View style="@style/DividerViewStyle" /> | ||
<androidx.recyclerview.widget.RecyclerView | ||
android:id="@android:id/list" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:overScrollMode="never" /> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="start|center" | ||
android:text="未添加" | ||
android:textAlignment="viewStart" | ||
android:textAppearance="@style/TextAppearance.PreferenceCategory" /> | ||
<View style="@style/DividerViewStyle" /> | ||
|
||
<androidx.recyclerview.widget.RecyclerView | ||
android:id="@+id/card_tile_add_list" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:overScrollMode="never" /> | ||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="start|center" | ||
android:text="未添加" | ||
android:textAlignment="viewStart" | ||
android:textAppearance="@style/TextAppearance.PreferenceCategory" /> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="start|center" | ||
android:layout_marginTop="@dimen/divider_margin_top" | ||
android:text="仅xxx支持圆角磁贴" | ||
android:textAlignment="viewStart" | ||
android:textAppearance="@style/TextAppearance.PreferenceCategory" /> | ||
<androidx.recyclerview.widget.RecyclerView | ||
android:id="@+id/card_tile_add_list" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:overScrollMode="never" /> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="start|center" | ||
android:layout_marginTop="@dimen/divider_margin_top" | ||
android:text="仅xxx支持圆角磁贴" | ||
android:textAlignment="viewStart" | ||
android:textAppearance="@style/TextAppearance.PreferenceCategory" /> | ||
|
||
</LinearLayout> | ||
|
||
</LinearLayout> | ||
</FrameLayout> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters