Add a settings page looking like in native app

放肆的年华 提交于 2021-01-27 10:10:51

问题


I would like to create settings page which would look like the settings on native platform (eg. PreferenceActivity/Fragment with xml on Android).

I am used to design the settings page by creating simple preference xml on Android which handles the basic settings flawlessly, however I am unable to find the similar mechanism in Xamarin.Forms which would do the same thing for all platforms natively (with the gui part). I just only found the SettingsPlugin which handles "Create and access settings from shared code across all of your apps!".

https://github.com/jamesmontemagno/SettingsPlugin

I would really appreciate any recommendation on designing the settings pages.


回答1:


You can use a TableView, which is an original Xamarin Forms User interface (without any plugin). If you set his Intent="Settings" , you can display a nice list of configuration settings like SwitchCell, EntryCell, or a CustomCell.

Displaying these elements depend on the operating system and on the version of it. So it looks and feels different on f.e. Android 4.4 and different on Android 8.

For example:

<TableView Intent="Settings">
    <TableRoot>
        <TableSection Title="My settings">
            <EntryCell Label="Name:" Placeholder="Enter Your First Name Here"/>
            <SwitchCell Text="Show my name" On="true"/>
            <SwitchCell Text="Update app automatically"/>
        </TableSection>
    </TableRoot>
</TableView>

Which will render something (not exactly that) like this: {source of img}



来源:https://stackoverflow.com/questions/52850763/add-a-settings-page-looking-like-in-native-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!