You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
src/api-impl: fix up code style, mainly for code imported from AOSP
used the following (plus manual edits):
`clang-format --style="{BasedOnStyle: LLVM, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: true, ColumnLimit: 0}`
This commit is contained in:
@@ -16,22 +16,22 @@
|
||||
|
||||
package android.view;
|
||||
|
||||
/** Interface to let you add and remove child views to an Activity. To get an instance
|
||||
* of this class, call {@link android.content.Context#getSystemService(java.lang.String) Context.getSystemService()}.
|
||||
*/
|
||||
public interface ViewManager
|
||||
{
|
||||
/**
|
||||
* Assign the passed LayoutParams to the passed View and add the view to the window.
|
||||
* <p>Throws {@link android.view.WindowManager.BadTokenException} for certain programming
|
||||
* errors, such as adding a second view to a window without removing the first view.
|
||||
* <p>Throws {@link android.view.WindowManager.InvalidDisplayException} if the window is on a
|
||||
* secondary {@link Display} and the specified display can't be found
|
||||
* (see {@link android.app.Presentation}).
|
||||
* @param view The view to be added to this window.
|
||||
* @param params The LayoutParams to assign to view.
|
||||
*/
|
||||
public void addView(View view, ViewGroup.LayoutParams params);
|
||||
public void updateViewLayout(View view, ViewGroup.LayoutParams params);
|
||||
public void removeView(View view);
|
||||
/**
|
||||
* Interface to let you add and remove child views to an Activity. To get an instance
|
||||
* of this class, call {@link android.content.Context#getSystemService(java.lang.String) Context.getSystemService()}.
|
||||
*/
|
||||
public interface ViewManager {
|
||||
/**
|
||||
* Assign the passed LayoutParams to the passed View and add the view to the window.
|
||||
* <p>Throws {@link android.view.WindowManager.BadTokenException} for certain programming
|
||||
* errors, such as adding a second view to a window without removing the first view.
|
||||
* <p>Throws {@link android.view.WindowManager.InvalidDisplayException} if the window is on a
|
||||
* secondary {@link Display} and the specified display can't be found
|
||||
* (see {@link android.app.Presentation}).
|
||||
* @param view The view to be added to this window.
|
||||
* @param params The LayoutParams to assign to view.
|
||||
*/
|
||||
public void addView(View view, ViewGroup.LayoutParams params);
|
||||
public void updateViewLayout(View view, ViewGroup.LayoutParams params);
|
||||
public void removeView(View view);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user