Skip to content

Commit

Permalink
test4
Browse files Browse the repository at this point in the history
  • Loading branch information
cinit committed Jul 15, 2020
1 parent cc7b3b7 commit e7de695
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class TroubleshootActivity extends IphoneTitleBarActivityCompat {
@Override
public boolean doOnCreate(Bundle savedInstanceState) {
super.doOnCreate(savedInstanceState);
LinearLayout ll = new LinearLayout(this);
final LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
ViewGroup.LayoutParams mmlp = new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT);
LinearLayout __ll = new LinearLayout(this);
Expand Down Expand Up @@ -120,7 +120,7 @@ public void run() {
public void onClick(View v) {
try {
Looper looper = Looper.getMainLooper();
MessageQueue queue = looper.getQueue();
MessageQueue queue = (MessageQueue) iget_object_or_null(looper, "mQueue");
iput_object(queue, "mQuitAllowed", true);
looper.quit();
} catch (Throwable e) {
Expand Down

0 comments on commit e7de695

Please sign in to comment.